body {
    margin: 0;
    padding: 0;
    background: #200c3e;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    overflow: auto;
    font-family: 'Roboto Mono', monospace;
    font-weight: 400;
}

header {
    width: 90%;
    padding: 30px 0;
    margin-left: auto;
    margin-right: auto;
}

header a {
    color: #e61791;
}

header a:hover {
    text-decoration: underline;
    color: #ffffff;
}

.header-text {
    margin: 10px 0 0;
    color: #ffffff;
    font-size: 0.9em;
    max-width: 100%;
    text-align: left;
    line-height: 1.5;
}

.logo {
    max-width: 4%;
    height: auto;
    margin-right: auto;
}

.artefacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 05px;
    max-width: 90%;
    width: 100%;
    padding: 20px 0;
}

.relic-info {
    text-align: center;
    font-size: 0.9em;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 80%;
    line-height: 1.5;
}

.relic-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    gap: 20px;
}

.relic-wrapper img {
    max-width: 200px;
    height: auto;
}

.relic-content {
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
}

.mint-widget {
    margin-left: 20px;
}

.relic-info a {
    color: #e61791;
    text-decoration: none;
}

.relic-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    body {
        align-items: flex-start;
        padding: 0 10px;
    }

    .logo {
        max-width: 20%;
        height: auto;
    }

    header {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 20px 0;
    }

    .header-text {
        text-align: left;
        width: 100%;
        font-size: 0.8em;
    }

    .artefacts {
        max-width: 100%;
        padding: 15px 0;
    }

    .relic-info {
        text-align: center;
        font-size: 0.8em;
        margin-bottom: 15px;
        max-width: 100%;
    }

    .relic-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .relic-wrapper img {
        max-width: 50%;
        height: auto;
    }

    .mint-widget {
        width: 100%;
    }
}


footer {
    width: 90%;
    padding: 30px 0;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.footer-text {
    margin: 10px 0 0;
    color: #ffffff;
    font-size: 0.8em;
    max-width: 100%;
    text-align: left;
    line-height: 1.5;
}

.footer-text a {
    color: #e61791;
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
    color: #ffffff;
}