@media only screen and (max-width: 600px) {
  #nav-bar {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  
  .nav-link{
    min-width: 200px;
    min-height: 50px;
  }
}

* {
  box-sizing: border-box;
}

body {
  background: rgb(6, 0, 14);
  color: white;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

#nav-bar {
  display: flex;
  justify-content: space-evenly;
  background-color: rgb(42, 0, 87);
  width: 100%;
  left: 0;
}

.nav-link {
  background: rgb(6, 0, 14);
  border: 2px solid white;
  margin: 6px;
  left: 2px;
  right: 2px;
  font-weight: bold;
  font-size: 2rem;
  text-decoration: none;
  padding: 2px;
}

#header {
background: linear-gradient(
    rgb(14, 0, 35) 0%,
    rgb(14, 0, 35) 5%,
    rgb(68, 0, 142) 22%,
    rgb(68, 0, 142) 75%,
    rgb(14, 0, 35) 85%,
    rgb(14, 0, 35)
  );

  position: relative;
  max-height: 180px;
  top: 34px;
} 

#header img {
  text-align: center;
  min-height: 180px;
}

#rikki_img {
  height: 500px;
  margin-bottom: 0;
}

#about h2 {
  margin-top: 0;
}

#form {
  display: flex;
  justify-content: center;
}

nav {
  display: flex;
  justify-content: center;
  position: fixed;
  text-align: center;
  top: 0;
  left: 25%;
}

a {
  color: white;
  font-size: 2rem;
}

img {
  max-width: 100%;
}