@font-face {
    font-family: "Prata-Regular";
    src:url("./../assets/font/Prata/Prata-Regular.ttf") format("ttf"),
        url("./../assets/font/Prata/Prata-Regular.eot") format("embeded-opentype"),
        url("./../assets/font/Prata/Prata-Regular.woff") format("woff"),
        url("./../assets/font/Prata/Prata-Regular.woff2") format("woff2");
    font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

html, body {
    width: 100%;
    font-family: 'Prata-Regular', serif;
    color: #635C56;
    position: relative;
}

.cookie-consent {
    overflow: hidden;
}

#screen-blocker {
    display: none;
}

.cookie-consent #screen-blocker {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(00, 00, 00, .9);
    pointer-events: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-size: 12rem;
    line-height: 16.8rem;
    font-weight: normal;
}

h3 {
    font-size: 3.6rem;
    line-height: 5.04rem;
    font-weight: normal;
}

h4 {
    font-size: 2.4rem;
    line-height: 4.32rem;
    font-weight: normal;
}

p {
    font-size: 1.4rem;
    line-height: 2.52rem;
}

a {
    color: inherit;
    text-decoration: none;
}

main section {
    padding: 1.6rem 5rem;
}

main section .section-content,
footer .footer-content {
    width: 100%;
    max-width: 122.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding-top: 13.28rem;
    padding-bottom: 2.28rem;
}

main section .section-content .content-box {
    padding: 8rem 10.5rem;
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
}

main section .section-content .content-box .credit h3 {
    margin: 5rem 0 3rem;
}

.back-arrow {
    width: 5rem;
    height: 5rem;
    position: absolute;
    top: 5rem;
    left: 5rem;
}

main,
footer {
    filter: grayscale(100%);
}

@media screen and (max-width: 1200px) {
    h1 {
        font-size: 8rem;
        line-height: 11.2rem;
    }
    
    h3 {
        font-size: 2.8rem;
        line-height: 3.92rem;
        font-weight: normal;
    }
    
    h4 {
        font-size: 1.8rem;
        line-height: 3.24rem;
    }
    
    p {
        font-size: 1.4rem;
        line-height: 2.52rem;
    }

    main section .section-content .content-box {
        padding: 8rem 5.5rem;
    }
}

@media screen and (max-width: 768px) {
    main section {
        padding: 1.6rem;
        min-height: max-content;
    }

    main section .section-content {
        padding-top: 3.4rem;
    }

    main section .section-content .content-box {
        padding: 1rem 0;
        row-gap: 1.5rem;
    }

    main section .section-content .content-box .credit h3 {
        margin: 1.5rem 0 3rem;
    }
}