#canvas {
    width: 100%;
    height: 100vh;
}

#screen2-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.7em;
}

.screen-left {
    color: #ffffff;
    width: 45vw;
    position: relative;
    left: 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.text-container {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.screen-left h2 {
    margin-right: 1em;
    font-size: 25px;
}

.screen-left p {
    font-size: 20px;
    margin-top: 1em;
}

.screen-right {
    width: 50vw;
    position: relative;
    right: 0;
}

#screen2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}

#mockup {
    height: 67vh;
}

#buttons {
    margin-top: 1.5em;
}

#slider {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 80%;
}

#slides {
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: left 0.5s ease;
}

.slide {
    width: 70%;
    height: 75%;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

.top-slide {
    width: 15%;
    height: 7%;
    position: absolute;
    top: -3.5%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 5px;
    box-shadow: #1a202c 0px 0px 10px;
    font-family: "Lusitana", serif;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#top-slide1 {
    background: linear-gradient(90deg, #9F7669, #835343);
}

#top-slide2{
    background: linear-gradient(90deg, #E5D0CD, #9A837A);
}

#top-slide3 {
    background: linear-gradient(90deg, #FCE679, #B67E4E);
}

.slide img,
.slide .news-container {
    margin-top: 3%;
}

#slide1 {
    display: flex;
    color: #fff;
    background: linear-gradient(225deg,
    #6E4334 19%,
    #542E32 47%,
    #291F25 73%
    );
    border: #E4A38C 2px solid;
}

#slide2 {
    display: flex;
    color: #fff;
    background: linear-gradient(225deg,
    #E6D4BD 3%,
    #8A7165 38%,
    #5B4A46 63%,
    #443738 75%
    );
    border: #FDC5C5 2px solid;
}

#slide3 {
    display: flex;
    color: #fff;
    background: linear-gradient(225deg,
    #FFE45D 12%,
    #A66D3B 44%,
    #47312A 75%
    );
    border: #FFECBD 2px solid;
}

.dots {
    cursor: default;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #bab9b9;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}

.dot:hover {
    background: linear-gradient(90deg,
    #B3B3B3,
    #656565
    );
}

.dot.active {
    background: linear-gradient(90deg,
    #FFE45D 12%,
    #D8AF3F 44%,
    #A66D3B 75%
    );
}

.button-slider {
    width: 7vw;
    text-align: center;
    font-size: 20px;
    padding: 4px 15px;
    cursor: pointer;
    background: linear-gradient(to right, #9F6049 0%, #DB9958 31%, #FBC96C 88%, #FEE397 100%);
    display: inline-block;
    margin: 0.5em;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
    border: none;
}

.button-slider img {
    width: 40%;
    margin-top: 5%;
}

#about {
    font-family: "LemonMilk", sans-serif;
    font-size: 1em;
    text-decoration: underline;
    margin-top: 2%;
}

@media (max-width: 768px) {
    #screen2-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100vw;
    }

    .screen-left {
        position: static;
        width: 100vw;
        text-align: center;
    }

    .screen-left h2 {
        margin-right: 0;
        font-size: 25px;
        text-align: center;
    }

    .screen-left p {
        font-size: 20px;
        margin-top: 1em;
    }

    .screen-right {
        width: 100vw;
    }

    #mockup {
        height: 40vh;
    }

    #buttons {
        margin-top: 1.5em;
        width: 100%;
    }

    .slide {
        width: 80%;
    }

    .top-slide {
        width: 40%;
    }

    #buttons-slider-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .button-slider {
        width: 20vw;
    }
}

@media (max-width: 992px) {
    .screen-left, .screen-right {
        width: 90%;
        left: 0;
    }

    #screen2-content, #screen3-content {
        flex-direction: column;
        padding: 1rem;
    }

    #mockup {
        height: 50vh;
    }
}

@media (max-width: 768px) {
    .screen {
        height: auto;
        min-height: 100vh;
        padding: 5rem 0;
    }

    #screen1-content {
        margin-top: 3rem;
    }

    #logo-sticky {
        width: 50%;
    }

    #screen2-content, #screen3-content {
        gap: 3rem;
    }

    .screen-left {
        position: static;
        width: 90vw;
        text-align: center;
    }

    .text-container {
        align-items: center;
    }

    .screen-left h2 {
        margin-right: 0;
        text-align: center;
    }

    .screen-right {
        width: 90vw;
    }

    #mockup {
        height: auto;
        width: 90%;
        max-width: 300px;
    }

    #buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .button {
        width: 80%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .screen-left h2 {
        font-size: 1.5rem;
    }

    .screen-left p {
        font-size: 1rem;
    }

    #logo-sticky {
        width: 70%;
    }

    .button {
        width: 90%;
        font-size: 1rem;
    }
}
