:root {
    --font-color: white;
    --ground-color: rgb(23, 23, 23);
    --light-color: rgb(165, 237, 255);

}
body {
    display: flex;
    justify-content: center;
    background-color: var(--ground-color);
}
header {
    display: flex;
    align-items: center;
    background-color: var(--light-color);
    width: 100vw;
    position: fixed;
    height: 3rem ;
    top: 0;
    left: 0;
    filter: drop-shadow(10px);
    z-index: 100;
}
.mainNavbar {
    width: 100vw;
    display: flex;
    justify-content: space-between;
    margin: 2rem;
    padding: 30px 10%;
    
}
.active {
    text-decoration: none;
    color: var(--font-color);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
}
.mainMenu {
    display: flex;
    gap: 40px;
}
.active:hover {
    transform:scale(1.3);
}
.profilePic {
    border-radius: 100%;
    height: 250px;
    margin: 20px;
}
.mainContainer {
    margin: 5em;
    display: flex;
    flex-direction: row;
    width: 80vw;
    background-color: var(--light-color);
    gap: 10%;
    border-radius: 10px;
}
.mainContent {
    display: flex;
    flex-direction: column;
}
.contact {
    display: flex;
    justify-content: center;
    height: 50px;
    align-items: start;
    gap: 25px;
    font-size: 35px;
}
.description {
    width: 80%;
    overflow: hidden;
}