html{
    scroll-behavior: smooth;
}

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0; 
    max-width: 100vw;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 10vh;
    box-shadow: 0px 5px 10px rgb(95, 94, 94);
    position: fixed;
    top: 0;
    width: 100vw;
    background-color: white;
    z-index: 1;

}

header img{
    height: 10vh;
    margin-left: 5vw;
    
}

nav{
    width: 25%;
    margin-right: 5vw;
    
}

nav ul{
    display: flex;
    justify-content: space-between;
}

nav ul li{
    list-style: none;
}

nav ul li a{
    text-decoration: none;
    color: black;
}

.main{
    background-image: linear-gradient(0deg, #00000088 40%, #ffffff44 100%), url(./Images/MainPage.jpg);
    background-size: cover;
    background-position: -20% 70%;
    height: 100vh;
    display: flex;
    align-items: center;
    
}

.info{
    margin-left: 5%;
   margin-top: 20%;
    
}

.info h1{
    font-size: 50px;
    color: white;
    margin-bottom: 50px;
}

.info a{
    font-size: 30px;
    padding: 10px 40px;
    background-color: orange;
    border: none;
    border-radius: 40px 5px 40px 5px;
    margin-left: 100px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    
}




.description{
    height: 92vh;
    
    
}

.description h2{
    text-align: center;
    position: relative;
    top: 50px;
    font-size: 40px;
    font-weight: 700;
    
    
}

.reviews {
    display: flex;
    flex-direction: column;
    font-size: 30px;
    align-items: center;
    height: 85vh;
    justify-content: space-evenly;
    
}


.reviews h3{
    font-weight: 100;
}

.reviews p{
    font-size: 20px;
    font-weight: 500;
    
}
.addresses{
    height: 400px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    
}

.address{
    box-shadow: rgb(170, 170, 170) 5px 5px 5px 5px;
    padding: 50px 30px;
    border-radius: 40px 5px 40px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.address-address{
    font-weight: 300;
}

.events{

    height: 60vh;
}

.events-banner{
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f2f2f2;
    position: relative;
    top: 10vh;
    
}

.contact-us{
    height: 90vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 100vw;
}


.contact-info h3{
    font-weight: 100;
    margin-top: 10px;
    width: 350px;
    
}

.email-form{
    display: flex;
    flex-direction: column;
    width: 500px;
    
    
}

input[type=text], input[type=email], textarea{
    margin-top: 20px;
    padding: 10px;
    background-color: #f2f2f2;
    border: none;
    border-bottom: 1px solid black;
    
}

.email-form button{
    margin-top: 20px;
    padding: 10px;
    border: none;
    background-color: #f2f2f2;
    border-radius: 15px;
    font-weight: 500;
}

footer{
    height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
   
}


@media only screen and (max-width: 900px) {
        header{
            width: 100vh;
            justify-content: flex-start
            
        }

        nav{
            margin-left: 30px;
        }

        nav ul li{
            margin: 10px;
        }

        .main a{
            margin: 0;
        }

        .contact-us{
            flex-direction: column;
        }

        .addresses{
            flex-direction: column;
        }


  }







