body{
    background-color: #f6f4ed;
}
header h3{
    font-family: "Roboto", serif;
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.5rem;
    color: #000;
    margin: 0 auto;
    width: fit-content;
}
.headline{
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}
.headline .topper{
    position: relative;
    max-width: 920px;
}
.headline .topper.g-img{
    height: 100vh;
    width: 65vw;
    background-image: url('img/rotating-banana.gif');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
}
.headline .topper.g-img p{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.headline .topper.g-img .tag01{
    top: 12%;
    font-family: 'Roboto', serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.3;
}
.headline .topper.g-img .tag02{
    bottom: 12%;
    font-style: italic;
    font-size: 30px;
}
.headline .topper.g-img .tag03{
    bottom: 11%;
    font-weight: bold;
}
.headline .topper.g-text{
    max-width: 500px;
}
.headline .topper.g-text h1{
    font-family: "Cormorant Garamond", serif;
    letter-spacing: normal;
    font-weight: bold;
    font-size: 60px;
    line-height: 0.88;
    margin-bottom: 10px;
    margin-top: 35vh;
}
.headline .topper.g-text .desc{
    padding: 0;
    margin: 0;
    font-size: 27px;
    line-height: 1.3;
}
main h4{
    color: var(--darkerColor);
    text-align: center;
    margin: 1rem auto 1.5rem auto;
}
main .small_section{
    max-width: 600px;
    margin: 0 auto 3rem auto;
    position: relative;
}
main .small_section::before{
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background-color: var(--darkerColor);
}
main .small_section h4{
    font-size: larger;
}
main .small_section p{
    font-size: 15px;
} 
main .small_section a{
    font-size: 12px;
}
.statue{
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 75vh;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
}
#banana-pile{background-image: url('img/statue.png');}
#rotten-pile{background-image: url('img/statue-methane.png');}

#banana-pile canvas, #rotten-pile canvas{
    position: absolute;
    inset: 0;
    z-index: 1;
}

.pile-scale{
    position: absolute;
    bottom: 49%;
    left: calc(50% + 50px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    z-index: 2;
    pointer-events: none;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: #f6f4ed;
    paint-order: stroke fill;
}

.pile-scale__line{
    width: 110px;
    height: 1px;
    background: #00000033;
    display: block;
}

.pile-scale__label{
    font-family: "Roboto", serif;
    font-size: 13px;
    font-weight: 400;
    color: #000;
    white-space: nowrap;
}
@media screen and (max-width: 600px) {
    .headline{
        height: auto;
        flex-direction: column;
        flex-direction: column-reverse;
        justify-content: center;
    }
    .headline .topper.g-text{padding-left: 15px;}
    .headline .topper.g-text .desc{line-height: 1.1;}
    .headline .topper.g-text h1{margin-top: 2.5rem;}
    .headline .topper.g-img{
        width: calc(100% + 15px);
        margin-left: -15px;
        margin-top: 2.5rem;
        margin-bottom: 2rem;
        aspect-ratio: 9 / 12;
        background-size: 100% auto;
        height: auto;
        background-position: 50% 29%;
    }
    .headline .topper.g-img p{
        word-break: break-word;
        text-align: center;
    }
    .headline .topper.g-img .tag01{
        width: 100px;
        top: 1%;
    }
    .headline .topper.g-img .tag02{
        line-height: 0.8;
        bottom: 5%;
    }
    .headline .topper.g-img .tag03{
        bottom: -1%;
    }
    .pile-scale__line{display: none;}
    .pile-scale__label{
        text-align: center;
    }
    .pile-scale{
        left: 50%;
        transform: translateX(-50%);
    }
}