:root {
    --text-color: rgb(96, 70, 109);
    --header-text-color: rgb(86, 204, 208);
    --secondary-font: 'DM Serif Text';
}

*, html, body {
    margin: 0;
    padding: 0;
}

body {
    color: var(--text-color);
    background-color: rgba(227, 248, 255, 1);
    font-family: 'Spartan', sans-serif;
    margin: 0;
    padding: 16px;
}

h1 {
    color: var(--header-text-color);
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
    font-size: 2.5rem;
}

h2 {
    margin-top: 0;
    margin-bottom: 16px;
    text-align: center;
    font-size: 1.5rem;
}

h3 {
    margin-bottom: 16px;
}

a {
    color: var(--text-color);
    text-align: center;
}

table {
    border-spacing: 8px;
}

table td:nth-child(2) {
    white-space: nowrap;
}

table td:last-child {
    text-align: right;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: center;
}

.section {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}

.section a {
    margin-bottom: 8px;
}

.section.bio {
    font-size: unset;
    font-weight: 300;
}

.section table {
    font-size: 0.8rem;
}

.rose {
    max-width: 150px;
    margin-bottom: 24px;
}

.links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    margin-top: 8px;
    margin-bottom: 82px;
    font-size: 14px;
    font-weight: bold;
}

picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.prerelease h3 {
    font-size: 50px;
    margin-bottom: 8px;
}

.photo-gallery {
    width: 100%;
    display: flex;
    gap: 10px;
}

.photo-gallery .column {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.photo-gallery .photo {
    position: relative;
}

.photo-gallery .photo img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
}

.photo-gallery .photo .overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 12px;
}

@media (min-width: 600px) {
    
    body { 
        padding: 16px;
    }

    h1 {
        font-size: 5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h4 {
        font-size: 1.125rem;
        padding: 0;
    }
    
    .content-wrapper {
        max-width: 900px;
    }

    .section {
        width: 75%;
    }

    .section.bio {
        font-size: 1.2rem;
    }

    .section table {
        font-size: unset;
    }
}
