body {
  background: #FF2DD1;

  margin: 0; 
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  font-family: sans-serif;

  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.title {
  font-size: 40px;
}

#count {
  font-size: 60px;
  user-select: none;
}

button {
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 16px;
  user-select: none;

  background-color: #4DFFBE;
  border: none;
  border-radius: 5px;
  cursor: pointer;         
}

.card {
  background-color: #FDFFB8;
  border-radius: 15px;
  padding: 40px 60px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

  width: 500px;
  height: 420px;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
}
