
.scroll-container{
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}


.section{
    position: relative;
    scroll-snap-align: start;
}

input, textarea{
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.40);
    backdrop-filter: blur(7.5px);
    padding: 25px;
    color: black;
}

input::placeholder, textarea::placeholder{
    color: black;
    opacity: 0.8;
}

input:focus, textarea:focus, *:focus-visible {
    outline: 2px solid #86D5CF;;
}

input {
    height: 50px;
}

textarea{
    min-height: 200px;
    resize: none;
}

img[class^='bg-image-']{
    position: absolute;
    z-index: -1;
}


.bg-image-0{
    top: 200px;
    right: 0;
}
.bg-image-1{
    bottom: -100px;
    left: 0;
}

.bg-image-2{
    bottom: -100px;
    right: 50px;
}
.bg-image-3{
    top: -100px;
    left: 50px;
}
.bg-image-4{
    top: -150px;
    right: 300px;
}
.bg-image-5{
    top: 50%;
    right: 0;
}
.bg-image-6{
    bottom: 0;
    left: 0;
}

.send-button{
    background: #61CDEF;
    border: none;
    padding: 10px 50px;
    border-radius: 25px;
    letter-spacing: 0.25rem;
    margin: 20px 0;
}

@media only screen and (max-width: 768px) {
    img[class^='bg-image-']{
        width: 70%;
    }
    .bg-image-2{
        bottom: -50px;
        right: 0;
    }
    .bg-image-3{
        top: -50px;
        left: 0;
    }
}