@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Edu+VIC+WA+NT+Beginner:wght@600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0fbcf9;
  font-family: "Ubuntu", sans-serif;
  color: white;
}

h1{
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Edu VIC WA NT Beginner', cursive;
}

span{
  color: #576574;
}

.main {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#box {
  padding: 15px;
  width: 40%;
  box-shadow: 0px 0px 5px grey;
  background-color: #576574;
  border-radius: 5px;
}

.row {
  width: 100%;
  margin: 2rem;
  margin-left: 0%;
}

.btn {
  width: 100%;
  padding: 5px;
  background-color: #ff6b6b;
  font-size: 20px;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.load{
  text-align: center;
}

.load .resetBtn{
  cursor: pointer;
  border: none;
  border-radius: 50px;
  background-color: #576574;
  color: white;
  margin-top: 5px;
  padding: 8px 20px;
  font-size: 15.5px;
  font-weight: bold;
}

.resetBtn:hover{
  background-color: #feca57;
  color: #576574;
}