.parallax-container {
    width: 100%;
    height: 100vh;
}

 .parallax img { 
    max-width: 100vh;
    max-height: auto;
 }

 #about {
     height: fit-content;
     width: 90%;
     margin: 10px auto;
 }

 h2 {
     font-family: 'Poppins';
     text-align: center;
     text-decoration: underline;
     font-weight: 700;
 }

 #about p {
     font-family: 'Poppins';
     text-align: center;
 }

 .carousel {
    width: 100%; 
    height: 550px;
    margin-top: 50px;
 
 }

 .carousel-item {
     width: 500px !important;
     height: 500px !important;
 }

 #contact img {
     max-width: 100%;
 }

 form {
     width: 80%;
     margin: 0px auto;
     font-family: 'Poppins';

 }


 button, a.button {
    border-radius: 12px;
    padding: 12px 56px;
    box-sizing: border-box;
    background:  #0099e5;
    letter-spacing: 0.3px;
    color: #FFFFFF;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    border-style: none;
    outline: none;
    width: 200px;
}

button:hover {
    box-shadow: 0px 10px 40px rgba(91, 98, 255, 0.3);
}

footer {
    border-top: 1px solid #eee;
    font-family: 'Poppins';
    height: 100px;
    padding: 15px;
    box-sizing: border-box;
}

#brand {
    float: left;
    margin-left: 20px;
}

#info {
    float: right;
    margin-right: 20px;
    line-height: 10px;
}

#mobile-parallax {
    display: none;
}

#success {
    width: 100vw;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    background-image: url('../images/italic.jpg');
    background-size: cover;
}

.text {
    width: 100vw;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    margin-bottom: 4vh;
    color: white;
}

.goback {
    display: inline-block;
    padding: 1.5vh 2vw;
    background-color: #0099e5;
    color: #FFFFFF;
    border-radius: 16px;
}

.goback:hover, button:hover {
    background-color: aquamarine;
    color: black;
    transition: ease-in-out 0.2s;
    cursor: pointer;
}

@media all and (min-width: 425px) and (max-width: 768px) {

    .parallax-container {
        width: auto;
        height: 300px;
    }
        
    
     .carousel {
        height: 300px;
    }
    

     .carousel-item {
        width: 300px !important;
        height: 300px !important;
    }
    
     form {
         margin-bottom: 20px;
    
     }
    
    
    
    footer {
        text-align: center;
    }
    
    #brand {
        float: none;
        margin-left: 0px;
    }
    
    #info {
        float: none;
        margin-right: 0px;
        line-height: 10px;
    }

}

@media all and (max-width: 424px) {

    #desktop-parallax {
        display: none;
    }

    #mobile-parallax {
        display: block;
    }



    .parallax-container {
        width: auto;
        height: 400px;
    }
        
    
     .carousel {
        height: 200px;
    }
    

     .carousel-item {
        width: 200px !important;
        height: 200px !important;
    }
    
     form {
         margin-bottom: 20px;
    
     }
    
    
    footer {
        text-align: center;
    }
    
    #brand {
        float: none;
        margin-left: 0px;
    }
    
    #info {
        float: none;
        margin-right: 0px;
        line-height: 10px;
    }

}