html, body {
    margin: 0;
    padding: 0;
    font-size: 12px;
}

.parallax-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
}

.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/home/BG_2.png');
    background-size: cover;
    background-position: center;
    transform-origin: center center;
    transform: scale(1.2); 
    transition: transform 0.2s ease-out; 
}

img {
    position: fixed;
    text-align: center;
    top: 50%;
    left: 50%;    
    transform: translate(-50%, -50%);
    z-index: 1;
    margin: 0;
    width: 70%;
    max-width: 500px;
}

.content {
    position: relative;
    z-index: 2;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 250px;
}

.quote {
    color: #FFF;
    text-align: right;
    font-family: Menlo;
    font-size: 4.236rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.236rem;
}

#first_element {
    margin-top: 100px;
    margin-bottom: 500px;
}

.HighlightButton-content h1 {
    color: #FFF;
    font-family: Menlo;
    font-size: 4.236rem;
    line-height: 1rem;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 1.618rem;
}

.HighlightButton-content a {
    background: none;
    border: none;
    color: #FFF;
    font-family: Menlo;
    font-size: 1rem;
    line-height: 1rem;
    font-style: normal;
    font-weight: 700;
    text-decoration-line: underline;
}

@media screen and (max-width: 842px) {
    html {
      font-size: 6px;
    }

    .content {
        margin-bottom: 300px;
    }

    .quote {
        text-align: left;
    }

    #first_element {
        margin-top: 0px;
        margin-bottom: 300px;
    }
}