body {
  background-color: #252525;
  color: #ffff;
  font-size: 13px;
}

h1 {
  color: #06b6d4;
  font-weight: 400;
}

select {
  background-color: #06b6d4;
  width: 175px;
  height: fit-content;
  font-size: 18px;
}

.btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  font-size: 1rem;
  background-color: #06b6d4;
  border: none;
  border-radius: 5px;
  color: white;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0596b0; 
}

.btn a {
  display: block;
  width: 100%;
  color: white;
  text-decoration: none;
}

#body-container {
  max-width: 950px;
  width: 100%;
}

#main-container {
  background-color: #191919;
}

#select-container {
  width: fit-content;
}

#bottom-logo-container {
  max-width: 70px;
}

#footer-image {
  height: 30px;
  width: 100px;
}

#footer-paragraph {
  max-width: 600px;
  font-size: 11px;
  color: #b1b0b0;
}

@media only screen and (min-width: 400px) {
  #bottom-logo-container {
    max-width: 90px;
  }
}

@media only screen and (min-width: 640px) {
  #bottom-logo-container {
    max-width: 130px;
  }
  #footer-image {
    height: 40px;
    width: 150px;
  }
}
