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

* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  background-color: #053b06;
}

.btn {
  background-color: #139a43;
  color: aliceblue;
  border: none;
  margin: 1rem;
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
  font-weight: bold;
}

.btn:hover {
  opacity: 0.9;
  transform: scale(0.98);
  transition: all 0.1s ease-out;
}

.btn:focus {
  outline: 0;
}
