*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    background-color: #fff2f2;
    background-color: #000000;
    scroll-behavior: smooth;
}

body{
    font-family: cursive;
}

.container{
    padding: 10px 10%;
    border-bottom:solid 3px #8873ef;
    border-radius: 15px;
    border-width: 100wh;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a{
    text-decoration: none;
    font-size: 18px ;
    position: relative;
    color: #fff;
}

.logo{
    width: 100px;
    height: 100px;
    border-radius: 15px;
}

nav ul li a:hover{
   color: #8873ef;
}

h1{
    margin-top: 50px;   
    text-align: center;
    color: #8873ef;
    font-size: 60px;
    margin-bottom: 50px;
}

.gallery{
    margin: 10px 50px;
    display: flex;
    flex-wrap: wrap;
}

.gallery img{
    height: 350px;
    width: auto;
    z-index: 50;
    filter: grayscale(100%);
    transition: 1s;
    padding: 20px;
    border-radius: 50px;
}

.gallery img:hover{
    filter: grayscale(0);
    transform: scale(1.1);
}

#videos video{
    display: flex;
    height: 350px;
    width: 500px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 20px;
    filter: grayscale(100%);
    transition: 1s;
    cursor: pointer;
}

#videos video:hover{
    filter: grayscale(0);
    transform: scale(1.1);
}

nav .fas{
    display: none;
}

footer{
    background-color: #2e2e2e;
}

.footercontainer{
    width: 100%;
    padding: 70px 30px 20px;
}

.socialicons{
    display: flex;
    justify-content: center;
}

.socialicons a{
    text-decoration: none;
    padding: 10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
}

.socialicons a i{
    font-size: 2em;
    color: black;
    opacity: 0.9;
}

.socialicons a:hover{
    background-color: #111;
    transition: 0.5s;
}

.socialicons a i:hover{
    color:white;
    transition: 0.5s;
}

.footernav{
    margin: 30px 0;
}

.footernav ul{
    display: flex;
    justify-content: center;
    list-style-type: none;
}

.footernav ul li a{
    color: white;
    margin: 20px;
    text-decoration: none;
    font-size: 1.1em;
    opacity: 0.9;
    transition: 0.3s;
}

.footernav ul li a:hover{
    color: #8873ef;
}

.footerbottom{
    background-color: #000;
    padding: 20px;
    text-align: center;
}

.footerbottom p{
    color: white;
}

.footerbottom p i{
    color: #8873ef;
}

@media only screen and (max-width:600px){
    nav .fas{
        display: block;
        font-size: 25px;
    }

    nav ul{
        background-color: #8873ef;
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: 0.5s;
    }

    nav ul li{
        display: block;
        margin: 25px;
    }

    nav ul .fas{
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
    }

    nav ul a{
        color: #fff;
    }

    nav ul a:hover{
        color:none;
    }

    .gallery img{
        margin-left: 50px;
        height: 300px;
        width: 350px;
    }
    #videos video{
        display: flex;
        flex-direction: column;
        margin-left: -20px;
    }
}

@media (max-width:700px){
    .footernav ul{
        flex-direction: column;
    }
    .footernav ul li{
        width: 100%;
        text-align: center;
        margin: 10px;
    }
}


