body {
  background-color: black;
  color: black;
  font-family: Verdana;
  margin: 0px;
}

.container {
  width: 50%;
  margin: 20px auto;
  border: 3px double white;
}

header {
  background: white;
}

.section {
  margin: 0 auto;
  text-align: center;
  display: block;
  justify-content: center;
  background-color: white;
}

.navigate-buttons {
  display: flex;
  gap: 10%;
  justify-content: center;
}

.navigate {
  outline: none;
  border: none;
  background-color: black;
  color: white;
  padding: 15px;
  font-size: inherit;
  margin-bottom: 80px;
}

.navigate:hover {
  cursor: pointer;
}

@media (max-width: 900px)  {
  .container {
    width: 80%;
  }
}