body{
    font-style: italic;
    margin: 0;
    padding: 0;
    background-image: url(../images/body-background.jpg);
}
ul li a{
    text-decoration: none;
    color: white;
}
li{
    text-decoration: none;
    display: inline-block;
}
#nav{
    background-color: bisque;
    top: 0px;
    width: 100%;
    height: 60px;
    position: fixed;
    transition: 0.2s;
}
#menu{
    margin: 0;
    padding: 0;
    position: fixed;
    top: -300%;
    left: 70%;
    transition: 0.1s;
}
nav i{
    font-size: 30px;
    color: burlywood;
    margin: 10px;
    margin-top: 15px;
}
#menu.active{
    top: 0%;
}
#nav.active{
    top: 115px;
}
#menu li{
    border-bottom: 1px solid gray;
    transition: 0.25s;
    background-color: burlywood;
}
#menu{
    background-color: black;
}
#nav1{
    width: 100%;
    background-color: black;
    padding: 10px;
    position: fixed;
}
#nav1 ul{
    width: 100%;
    position: absolute;
    left: 0px;
}
#nav1 ul li{
    display: block;
    padding: 10px;
    width: 100%;
    text-align: center;
}
#menu li:hover{
    background-color: rgb(214, 157, 82);
}
#toggle{
    transition: 0.25s;
}
#toggle.active{
    transform: rotate(90deg);
}

#copyright{
    position: absolute;
    top: 250%;
    background-image: url("../images/copyright.png");
    background-size: contain;
    width: 100%;
    height: 300px;
}
::-webkit-scrollbar{
    background-color: rgb(255, 202, 137);
    width: 5px;
}
::-webkit-scrollbar-thumb{
    background: rgb(194, 110, 0);
}
#body{
    padding-top: 70px;
    transition: 0.2s;
}
#body.active{
    padding-top: 180px;
}
#body #image-slider{
    animation: 10s image-slider infinite;
    width: 450px;
    height: 270px;
    background-size: cover;
    border: 5px solid burlywood;
}
@keyframes image-slider{
    0%{
        background-image: url(../images/slider/1.jpg);
    }
    25%{
        background-image: url(../images/slider/2.jpg);
    }
    50%{
        background-image: url(../images/slider/3.jpg);
    }
    75%{
        background-image: url(../images/slider/4.jpg);
    }
    100%{
        background-image: url(../images/slider/5.jpg);
    }
}
#camera{
    width: 450px;
    height: 270px;
    border: 5px solid black;
}