@font-face {
  src: url("CursedTimer.ttf");
  font-family: Cursed Timer ULiL;
}
* {
  box-sizing: border-box;
  font-size: 12px;
}
body {
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: #9aabd8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  width: 56vw;
  max-width: 716px;
  min-width: 270px;
  height: 64vh;
  background-color: #1b244a;
  margin: auto;
}
.score-card{
  display:flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  /* border:1px solid red; */
}
.score {
  display:block;
  background-color: black;
  color: #f94f6d;
  font-family: Cursed Timer ULiL;
  font-size: clamp(4rem,5.6vw,5.6rem);
  font-weight: 400;
  line-height: 1.4;
  width:9rem;
  aspect-ratio: 1.256;
  border-radius: 5px;
  margin-bottom: 1.625rem;
  margin-top: 1.25rem;
  overflow: hidden;
  display:flex;
  justify-content: center;
  align-items: center;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 0.9;
  margin: 0;
  color: whitesmoke;
}

.btn-group {
  display: flex;
  justify-content: space-between;
  gap:5px;
}

.btn {
  color: #9aabd8;
  border: 2px solid #9aabd8;
  background-color: transparent;
  border-radius: 5px;
  width: 2.5em;
  height: 2.5em;
  font-family: Cursed Timer ULiL;
  font-size: 1.125rem;
  margin:0;
  padding:0;
}

#btn-reset {
  background-color: #1b244a;
  box-shadow: 5px 0px 5px #1b244a;
  color: #9aabd8;
  border-radius: 20%;
  width: 5.635em;
  height: 5.625em;
  border: 5px solid #f94f6d;
  margin-top: 1.5em;
}

@media (min-width: 768px) {
  * {
    font-size: 16px;
  }
}
