
body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

html {
    font-size: 100%;
}

main {
    flex: 1;
}


.navbar {
    width: auto;
    background-color: lightgray;
    display: flex;
    justify-content: center;    
    top: 0;
    height: fit-content;
    position: sticky;
    z-index: 1000;
}

.navbar a {
    font-size: clamp(1rem, 1rem, 3rem);
    text-align: center;
    color: black;
    padding: 1rem clamp(0.3rem, 2vw, 1.5rem);;
    text-decoration: none;
    transition: 0.3s ease-out;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.navbar a:hover{
    color: cornflowerblue;
    transform: scale(1.2); 
    transition: 0.3s ease-in;
}

#home-navbar{
    margin-left: auto;
}

#projects-navbar{
    margin-right: auto;
}

#parent{
    height: fit-content;
    background-color: lightgray;
    display: flex;
    margin-bottom: 0;
}


#footer-text{
    width: fit-content;
    margin-left: 5%;
    margin-right: 10px;
    font-family: 'Lucida Sans';
    font-size: clamp(1rem, 4vw, 1.25rem);
}


#footer-button{
    display: flex;
    flex-direction: column;
    align-items: center;  
    justify-content: center;
    margin-right: clamp(0.25rem, 20vw, 30vw);
    margin-left: auto;
}

button{
    background-color:cornflowerblue;
    border-radius: 10px;
    padding: 0.2rem 0.3rem;
    transition: 0.3s ease-out;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    white-space: nowrap; 
    font-size: clamp(0.75rem, 2vw, 1rem);
    cursor: pointer;

}

button:hover{
    transition: 0.3s ease-in;
    border-radius: 20px;
}


img{
    height: clamp(1.5rem, 3vw, 5rem);
    width: clamp(1.5rem, 3vw, 5rem);
}
#mail {
    height: clamp(1.5rem, 3vw, 5rem);
    width: clamp(1.5rem + 1vw, 4vw, 5rem + 1vw);
}

#parent #footer-icons{
    display: flex;
    justify-content: center;
    align-items: center;
}


#footer-icons a{
    text-decoration: none;
}

#footer-icons a img {
  display: inline-block;
  vertical-align: middle;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 677px) {
  #project-description-wrapper {
    display: row;
  }
}