body {
  font-family: "Montserrat";
  font-size: 20px;
  margin: 0px;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  border: solid black;
  color: #E0A458;
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 10vh;
  font-family: "Permanent Marker";
}

main {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  position: relative;
  top: 10vh;
  height: 85vh;
  background-image: linear-gradient(to bottom, rgba(224, 164, 88, 0.3), rgba(224, 164, 88, 0.3)), url(images/games_rotated_blur.jpg);
  background-color: rgb(255, 255, 255);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color:#E0A458;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  border: solid black;
  position: fixed;
  bottom: 0px;
  width: 100%;
  height: 5vh;
}

ul {
  padding-left: 0px;
  list-style-type: none;
}

a {
  text-decoration: none;
  color:#E0A458;
  font-family: "Permanent Marker";
}

p {
  text-align: center;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: black;
  border-radius: 10px;
  padding: 10px;
  margin: 10px;
}

.card a {
  font-family: "Montserrat";
}

#projects {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}