@import url("https://fonts.googleapis.com/css2?family=Nunito&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Wendy One", sans-serif;
}

body {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  height: 100%;
  background-image: linear-gradient(to top left, #f40303 0%, #000000 100%);
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
}

.hidden {
  display: none;
}

.card-div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.score-div {
  display: flex;
  justify-content: center;
  align-items: center;
}

#card {
  width: 175px;
  margin: 0 25px;
  box-shadow: 0px 4px 13px rgb(0 0 0 / 25%);
}

.btn {
  width: 40px;
  border-radius: 50%;
  box-shadow: 0px 4px 13px rgb(0 0 0 / 25%);
}

.btn:hover {
  cursor: pointer;
}

.score,
.title {
  margin: 40px 0;
}

.score {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.score span {
  margin-left: 3px;
}

.score p {
  margin: 7.5px 0;
  font-size: 1.5rem;
  color: white;
}

h1 {
  font-size: 3rem;
  color: white;
}

@media (min-width: 1400px) {
  h1 {
    font-size: 4rem;
  }

  #card {
    width: 200px;
  }

  .score p {
    font-size: 2rem;
    margin: 10px 0;
  }

  .btn {
    width: 50px;
  }

  .score,
  .title {
    margin: 50px 0;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.25rem;
  }
}
