*{

    margin: 0;
    padding: 0;
    font-family: sans-serif;

}
.main{
    width: 100%;
    height: 100vh;
    position: absolute;
    overflow: scroll;
    background: linear-gradient(to right, #ECECEC, #464646);
}
nav{
    width: 100%;
    position: relative;
    margin: 0px auto;
    z-index: 1;
    display: flex;
    align-items: center;
    background-color: #000;
}
.logo{
    flex-basis: 20%;
}
.logo img{
    filter: invert();
    width: 70px; 
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    margin: 0 8px;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
}
.nav-links ul li b{

    font-size: 30;
    margin-right: 530px;
    color: #fff;
    text-decoration: none;
}
.nav-links a{
    margin: 0 8px;
    border: none;
    background-color: transparent;
    font-size: 16;
    color: #fff;
    text-decoration: none;
    background-color: transparent;
}
.nav-links a:hover{
    filter: Invert(15%);
    transform: scale(0.98);
    cursor: pointer;


}
.nav-links ul li a:hover{
    filter: Invert(15%);
}
.information{
    width: 1000px;
    height: 1000px;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
}
#circle{
    width: 1000px;
    height: 1000px;
    position: absolute;
    top: 0%;
    left: 0%;
    border-radius: 50%;
    transform: rotate(0deg);
}
.feature img{
    width: 70px;
}
.feature{
    position: absolute;
    display: flex;
    color: #000;
}
.feature div{
    margin-left: 15px;
    margin-top: 25px;
}
.feature div p{
    margin-top: 8px;
}
.one{
    top: 450px;
    left: 600px;
    visibility: hidden;
}
.two{
    top: 350px;
    left: 600px;
}
.two:hover {
    filter:drop-shadow(0 0 0.75rem rgb(48, 48, 48));

}
.three{
    top: 450px;
    left: 600px;
}
.three:hover {
    filter:drop-shadow(0 0 0.75rem rgb(48, 48, 48));
}
.four{
    top: 550px;
    left: 600px;
}
.four:hover {
    filter:drop-shadow(0 0 0.75rem rgb(48, 48, 48));
}
.five{
    top: 450px;
    left: 600px;
    visibility: hidden;
}
.me{
    width: 400px;
    height: 420px;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 1;
    object-fit: cover;
    border-radius: 50%;

}
.me2{
    width: 500px;
    height: 520px;
    position: absolute;
    top: 50%;
    left: 120%;
    transform: translateY(-50%);
    z-index: 1;
    object-fit: cover;
    border-radius: 50%;
    animation-name: animateTransition;
    animation-duration: 1s;
}
.controls{
    position: absolute;
    left: 800;
    top: 48%;
    transform: translateY(-40%);
    text-align: center;
}
.dropbtn {
    margin: 0 8px;
    background-color: transparent;
    color: #fff;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
.dropbtn:hover {
    filter: Invert(15%);
    cursor: pointer;
    background-color: transparent;
}
.dropbtn:focus {
    background-color: transparent;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    left: 2px;
    display: none;
    position: absolute;
    background-color: #868686;
    min-width: 60px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown-content a {
    color: black;
    text-align: left;
    padding: 6px 4px;
    text-decoration: none;
    display: block;
    animation-name: animateDrop;
    animation-duration: 500ms;
}
.dropdown-content a:hover {
    filter:blur(5%);
    color: #fff;
}
.show {
    display:block;
}
.WIP {
    font-size: 16;
    margin-top: 150px;
    margin-left: 1000px;
    margin-right: 100px;
    text-align: left;
    max-width: 600px;

}
.aboutMeText {
    font-size: 16;
    margin-top: 150px;
    margin-right: 1000px;
    margin-left: 200px;
    text-align: left;
    max-width: 600px;
    animation-name: animateTransition;
    animation-duration: 1s;
}
#CV {
    position: absolute;
    top: 100px;
    right: 150px;
}
#closeButton {
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: 96.25%;
    left: 100%;
    image-rendering: crisp-edges;
}
#closeButton:hover {
    filter: invert(20%);
}
@keyframes animateTransition {
    from {opacity: 0%;}
    to {opacity: 100%;}
}

@keyframes animateDrop {
    from {opacity: 0%;}
    to {opacity: 100%;}
}