@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: space-around;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  background-color: blueviolet;
}

.buttons {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 80%;
}

.btn {
  background-color: darkmagenta;
  padding: 30px;
  color: aliceblue;
  font-size: large;
  border: none;
  box-shadow: 2px 2px 8px black;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn:hover {
  transform: scale(1.1);
  box-shadow: 1px 1px 2xp black;
}
