body{
  color: #ffffff;
  background-color: #14213d;
  font-family: 'Assistant', sans-serif;
}

a:link{
  color: #e5e5e5;
  text-decoration: none;
}

a:visited{
  color: #a0a0a0;
}

a:hover{
  color: #fca311;
}

a div {
  color: #ffffff;
}

#navbutton{
  position: fixed;
  display: none;
  width: 50px;
  height: 50px;
  padding: 10px;
  background-color: black;
  border-radius: 10px;
  border: none
}

#hiddenbar{
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  background-color: #000000;
  display: flex;
  flex-direction: column;
}

#navbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  background-color: #000000;
  display: flex;
  flex-direction: row;
  font-size: clamp(18px, 2vw, 24px);
}

#welcome-section{
  height: 100vh;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#welcome-section h1{
  font-size: clamp(80px, 10vw,100px);
  font-family: 'Codystar', cursive;
}

#ws{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#ws2{
  font-size: 40px;
}

#ws3{
  font-size: 20px;
  color: #d62828; 
}

#projects-head{
  height: 10vh;
}

#projects{
  text-align: center;
}

#project-collection{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

#social-medias{
  height: 50vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-evenly;
}

#sm{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  font-size: clamp(18px, 2vw, 24px);
}

#footer{
  text-align: center;
}

.project-tile{
  background-color: #24314d;
  margin: 10px;
  padding: 20px;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  width: 250px;
  height: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-tile img{
  max-width: 90%;
  width: auto;
  height: 100px;
  flex: 1 0;
}

.navlink{
  height: 100%;
  text-align: center;
  flex: 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.navlink:hover{
  background-color: #222222;
}

@media (max-width: 650px){
  #navbar{
    display: none;
  }
  #navbutton{
    display: inline;
  }
}