* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1 {
  font-weight: bold;
  text-align: center;
  font-size: 1.5625rem;
}

h1:hover {
  color: red;
}

h1,
p {
  font-family: arial;
}

p {
  font-size: 1.125rem;
}

a:link,
a:visited,
a:active {
  color: #000000;
  text-decoration: none;
}
a:hover {
  color: red;
}

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

header img {
  width: 100%;
  height: 20rem;
}

header h1 {
  color: rgb(1, 1, 1);
  padding: 1.50rem;
}

.options {
  padding: 0.3125rem;
  font-weight: bold;
  margin-bottom: 0.325rem;
}

.options:nth-child(even) {
  background-color: rgb(97, 95, 95);
}

.options:nth-child(even) p {
  color: #f5f5f5;
}

body {
  background-color: #f5f5f5;
}

@media (min-width: 18.75rem) and (max-width: 26.5625rem) {
  header img {
    height: 7rem;
  }
  header h1 {
    font-size: 1.8rem !important;
  }

  p {
    font-size: 1.5rem;
  }

  .options {
    font-weight: bold;
  }
}