html{
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    background-color: RGB(206, 192, 217);
}

body{
    margin: 0px;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
}

section{
    scroll-snap-align: start;
}

.imagem{
    width: 100vw;
    height: 100vh;
}

.button-cta{
    position: absolute;
    font-size: large;
    border-radius: 5px;
    padding: 6px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white;
    background-color: RGB(74, 10, 102);
}

body::-webkit-scrollbar {
    width: 12px;               /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
    background: rgba(187, 167, 204, 0.582);        /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
    background-color: rgb(161, 114, 202);    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
}

.btn {
    display: flex;
    border-radius: 40px;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 70px;
    height: 70px;
    background-color: rgb(142, 76, 199);
    text-decoration: none;
}
.btn::after {
    content: "↑";
    font-size: 40px;
    font-weight: bold;
    color: aliceblue;
    transition: margin-top 250ms;
}
.btn:hover::after {
    margin-top:-8px;
}

.imagem-container{
    cursor: pointer;
}

@media screen and (max-width: 500px) {
    .imagem{
        /* width: auto; */
        height: auto;
    }

    .cta-text{
        font-size: 9px !important;
    }
}