header{
    margin:  0px;
}
body{
    margin: 0px;
    margin-top: 100px;
    font-family: Arial, Helvetica, sans-serif;
}
body[theme=light]{
    background-color: white;
    color: black;
}
body[theme=dark]{
    background-color: rgb(10, 10, 10);
    color: rgb(255, 255, 255);
}
#title{
    width: 100%;
    text-align: center;
}
a:link{
    color: rgb(3, 106, 202);
}
a:visited{
    color: rgb(3, 106, 202);
}
footer{
    text-align: right;
}
.navi ul{
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    background-color: #202020;
    overflow: hidden;
    position: fixed;
    width: 100%;
    top: 0;
}
.navi li{
    float: left;
}
.navi button{
    /*15px to offset the padding of .navi a elements below*/
    margin-top: 15px;
    margin-left: 15px;
}
.navi a{
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
}
.navi a:hover {
    background-color: gray;
}
.navi a:active {
    background-color: rgb(87, 87, 87);
}
#contact{
    text-align: center;
}

.about{
    display: flex;
    width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.about span{
    padding: 50px;
}

.filter{
    width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.dropdown{
    text-align: right;
    display: inline-block;
}
.dropdown p{
    display: block;
    color: black;
    text-decoration: none;
    padding: 10px 15px;
}
.dropdown p:hover{
    background-color: gray;
}
.dropdown .pages{
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 2px 2px 5px black;
}
.dropdown button{
    padding: 10px 15px;
}
.dropdown:hover .pages{
    display:inline-flex;
}
.toggleContainer{
    margin-top: 10px;
    margin-left: 10px;
    border:2px solid rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    display: inline-flex;
    border-radius: 25px;
    width: 60px;
    height: 25px;
    justify-content: space-between;
}
#imgLight{
    background-color: white;
    border-color: white;
    border-radius: 25px;
    width: 25px;
    height: 25px;
    -khtml-user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;

}
.animateDark{
    animation-name: slideDark;
    animation-duration: .25s;
    animation-fill-mode: forwards;
}
.animateLight{
    animation-name: slideLight;
    animation-duration: .25s;
    animation-fill-mode: forwards;
}
@keyframes slideDark{
    to{transform: translateX(35px);}
}
@keyframes slideLight{
    from{transform: translateX(35px);}
}
