@import url('https://fonts.googleapis.com/css2?family=Exile&family=Oswald:wght@200..700&display=swap');


body {
  background-color: black;
  color: white;
  box-sizing: border-box;
}

#container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-size: 4rem;
  font-family: "Exile", system-ui;
}

button, .result {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 2rem;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

button {
  width: 200px;
  border: none;
  height: 75px;
  border-radius: 20px 40px;
  transition: 0.5s all;
  cursor: pointer;
}

button:hover {
  background-color: black;
  color: white;
  border: 10px solid white;
  border-radius: 40px 20px;
}

.result {
  margin-top: 50px;
}


@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
    text-align: center;
  }

  button {
    font-size: 0.8rem;
    width: 60px;
    height: 30px;
  }

  button:hover {
    border: 3px solid white;
  }

  .result {
    font-size: 0.9rem;
  }

}
