.header{
    margin: 0px;
    margin-top: 40px;
    margin-left: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

body{
    background-color: black;  
    margin-bottom: 0;
}

body::-webkit-scrollbar{
    display:none
}


p{
    font-family: Poppins, sans-serif;
    font-size: 15px;
    font-weight: 200;
    margin: 0px;
    color: white;
}

.left{
    display: flex;
    flex-direction: row;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    font-weight: 200;
}

.left a{
    text-decoration: none;
}

.dropdown .dropdown-content{
    display: none;
    position: absolute;
    min-width: 100px;
}

.dropdown:hover .dropdown-content{
    display: flex;
    flex-direction: column;
}

.dropdown-content{
    padding-top: 30px;
    row-gap: 13px;
    font-family: "Poppins",sans-serif;
    background-color: rgba(0, 0, 0, 0.814);
}

.dropdown-content a{
    color: white;
    font-size: 14px;
}

.dropdown-content a:hover{
    color: #EB4A4A;
}

.middle{
    color: white;
    display: flex;
    flex-direction: row;
    flex: 1.6;
    justify-content: center;

}

.home-page-icon{
    height: 30px;
}

.right{
    color: white;
    display: flex;
    flex-direction: row;
    flex: 1;
    justify-content: right;

}

.right img{
    height: auto;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    text-align: center;
}


.right button{
    background-color: black;
    margin-right: 50px;
    height: 23px;
    border: none;
    overflow: hidden;
    transition: opacity 0.2s, cursor 0.5s;

}

.right button:hover{
    cursor: pointer;
}

.right button:active{
    opacity: 0.6;
}

.home-link:hover, .about-link:hover, .projects-link:hover, .contact-link:hover{
    text-decoration: underline;
}