* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{

    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
nav{
    position: fixed;
    top:0;
}
#navbar{
    font-size: 1.5rem;
    
}
#navbar ul{
    display: flex;
  justify-content: flex-end;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
    height: 80px;
    padding-left: 40%;
    justify-content:space-around;
    align-items:center;
    background-color:#334257;
    
    
    
    
}
#navbar ul li{
    list-style: none;
    text-align:justify;

    
}
#navbar ul li a{
    text-decoration: none;
    padding: 25px;
    color:white;

    
    
}
#welcome-section{
    width: 100%;
    height: 100vh;
    padding-top: 100px;
    background-color:#EEEEEE;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #334257;
}
#welcome-section h1{
    font-size: 5rem;
}
#welcome-section p{
    font-size: 2rem;
}
#projects{
    background-color: #476072;
}
#projects div{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: space-between;
    
}
#projects h2{
    text-align: center;
    padding: 80px;
    font-size: 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color:#EEEEEE ;
}
.project-tile{
    width: 400px;
    height: auto;
    background-color: #334257;
    margin-bottom: 50px;
    border-style: solid;
    border-width: 1px;
    border-color: #334257;
    
}
.project-tile img{
    width: 400px;
    height: auto;
}
.project-tile li{
    list-style: none;
}
.project-tile p{
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #EEEEEE;
    font-weight: 900;
}

#link{
    
    text-align: center;
    line-height: 80px;
    width: 100%;
    height: 100vh;
    color:#334257;
    background-color: #EEEEEE;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#profile-link{
    
}
#profile-link img{
    width: 50px;
    height: auto;
    margin: 10px;
}
@media only screen and (max-width: 800px) {
    #welcome-section{
        display: flex;
        flex-direction: column;
        justify-content:center;
        align-items: center;
    }
    #welcome-section h1{
        font-size: 3rem;
    }
    #welcome-section p{
        font-size: 1rem;
    }
    #navbar ul{
        padding-left: 0;
        top: 0;
        right: 0;
        left: 0; 
    }
}
@media only screen and (max-width: 500) {
    
    #navbar ul{
        padding-left: 0;
        top: 0;
        right: 0;
        left: 0; 
    }
}
