html,
body {
  height: 100%;
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
}

.container {
  height: 100%;
  width: 100%;
}

.nav1 {
  background-color: navy;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.box {
  text-align: center;
  border: 2px solid orange;
  background-color: white;
  justify-content: center;
  align-items: center;
  margin-right: 6rem;
  width: 20%;
}

.nav2 {
  display: flex;
  justify-content: space-around;
  padding: 1rem;
}

select {
  width: 70%;
}

input + button:hover {
  background-color: white;
  color: black;
}

input + button {
  background-color: black;
  color: white;
}

main {
  margin-top: 0.1rem;
}

section {
  display: flex;
  padding: 1rem;
}

img {
  width: 10rem;
  height: 10rem;
  padding: 1rem;
}

.content {
  padding: 1rem;
}

h5 {
  font-weight: normal;
  padding: 0.3rem;
}

.overview {
  padding: 0.3rem;
}

.button {
  padding: 0.3rem;
}

.continue {
  padding: 0.3rem;
  color: white;
  background-color: orangered;
}

.continue:hover {
  color: black;
}

.title {
  padding: 0.3rem;
  text-decoration: none;
  font-weight: bold;
  font-size: large;
}

::selection {
  color: red;
}
@media only screen and (max-width: 600px) {
  html,
  body {
    height: 100%;
    width: 100%;
  }
  main {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  * {
    margin: 0;
    padding: 0;
  }

  .nav1 {
    width: 100%;
  }
  .nav1 {
    background-color: navy;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .box {
    text-align: center;
    border: 2px solid orange;
    background-color: white;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-left: 5rem;
  }

  select {
    width: 100%;
  }

  section {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  img {
    width: 15rem;
    height: 15rem;
  }
  .title {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .content {
    justify-content: center;
    align-items: center;
  }

  .nav2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}
