html,
body {
  margin: 0;
  padding: 0;
}

#navbar {
  background-color: slategray;
  position: fixed;
  width: 100vw;
}

#navbar a {
  float: left;
  display: block;
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  padding: 15px;
  text-decoration: none;
}

#home {
  font-weight: bolder;
}

#about {
  background-color: aliceblue;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-evenly;
  padding: 5vw;
  width: 90vw;
}

#bio {
  width: 50%;
}

#pic {
  width: 40%;
}

#pic img {
  width: 100%;
}

#pic p {
  text-align: center;
}

#projects {
  background-color: beige;
  padding: 5vw;
}

#projects h1 {
  text-align: center;
}

#cards {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

#cards > * {
  width: 25%;
  background-color: white;
  border-radius: 30px;
  padding: 1em;
  box-shadow: 0.5em 0.5em 0.5em gray;
}

#contacts {
  background-color: darkseagreen;
  padding: 5vw;
}

h1 {
  color: darkolivegreen;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 6vh;
}

h3 {
  color: midnightblue;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 3vh;
}

p {
  color: black;
  font-family: "Times New Roman", Times, serif;
  font-size: 2vh;
}

img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 30px;
}

