@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=VT323&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "VT323", sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 30vh 10vh;
  height: 450px;
  width: 550px;
  background-color: rgb(129, 104, 175);
  border-radius: 13px;
}

section h1 {
  font-size: 2rem;
  font-family: sans-serif;
  margin: 20px 20px;
  color: #fff;
  text-transform: uppercase;
}

section #icon {
  font-size: 5rem;
  color: #ffffff;
}

section #timer {
  font-size: 4rem;
  margin: 20px;
}

section button {
  background: transparent;
  border: none;
  padding: 10px 20px;
}

button {
  margin: 10px;
  font-family: "VT323";
  color: #fff;
  width: 6rem;
  cursor: pointer;
}

#start-button {
  border: 1px solid;
}

#stop-button {
  border: 1px solid;
}

#reset-button {
  border: 1px solid;
}
button:hover {
  background-color: #4f418a;
}
