@import url("https://use.typekit.net/gom3gkt.css");
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

body {
    overflow-x: hidden;
    margin: 0;
}

.header {
    text-align: center;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    flex-wrap: wrap;
    font-family: adobe-garamond-pro, serif;
    font-weight: 700;
    font-style: normal;
}

.logo {
    width: 3rem;
}

.credits {
    background-color: #f9e8c5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 40px;
    font-family: 'Roboto', sans-serif;
}

#credits-bg {
    min-height: 80vh;
    padding-top: 5vh;
    padding-bottom: 5vh;
    padding-left: 5vw;

}

.credits-body {
    width: 100%;
    display: flex;
    padding-right: 5vw;
    padding-top: 5vh;
    padding-bottom: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.credits-text {
    text-align: right;
    line-height: 1;
}


.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 50vh;
    text-align: center;
    border-top: 1px solid #ccc;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
}

.footer-text>*>a {
    color: black;
    font-size: 1em;
}

@media screen and (max-width: 768px) {
    .header {
        font-size: 1rem;
        gap: 1rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .header h1 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .credits {
        flex-wrap: wrap;
        gap: 0;
    }

    #credits-bg {
        min-height: 0;
        height: auto;
        padding-bottom: 2vh;
        padding-left: 5%;
        padding-right: 5%;
        width: 90%;
    }

    .credits-body {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .credits-text {
        text-align: left;
        padding-left: 7%;
        padding-right: 7%;
    }
}
