body {
  font-family: "Bangers", system-ui;
  background-color: #04212c;
  overflow: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.grid {
  height: 400px;
  width: 400px;
  display: flex;
  flex-wrap: wrap;
  background-color: rgb(92, 22, 86);
  border: 8px solid rgb(4, 56, 85);
  box-shadow: 0 0px 10px 2px #e1e1e1c2;
  border-radius: 0.3rem;
}

div {
  font-size: 25px;
  text-align: center;
}

.info {
  width: 410px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.5rem 0;
}

.flagss {
  color: rgb(225, 254, 4);
  font-weight: 400;
  margin-top: 20px;
}

.timer {
  color: rgb(225, 254, 4);
  font-weight: 400;
  margin-top: 20px;
}

.reset-button {
  background-color: #0dc0c7;
  padding: 10px 50px;
  margin: 15px;
  border-radius: 20px;
  outline: none;
  border: none;
  font-size: 22px;
  color: black;
  font-family: "Bangers", system-ui;
  transition: 0.4s ease;
}

.reset-button:hover {
  transform: scale(1.1);
}

.valid,
.bomb {
  display: flex;
  justify-content: center;
  align-items: center;
}

.valid {
  width: 40px;
  height: 40px;
  border: 3px solid;
  border-color: rgba(4, 116, 201, 0.969);
  box-sizing: border-box;
  border-radius: 0.3rem;
}

.bomb {
  width: 40px;
  height: 40px;
  border: 3px solid;
  border-color: rgba(4, 116, 201, 0.969);
  box-sizing: border-box;
  border-radius: 0.3rem;
}

.checked {
  width: 40px;
  height: 40px;
  border: 2px solid #dff306;
  box-sizing: border-box;
  border-radius: 0.3rem;
}

#result {
  color: rgb(225, 254, 4);
}

.one {
  color: white;
}

.two {
  color: #f707ff;
}

.three {
  color: #06fd0a;
}

.four {
  color: #090909;
}

@media (max-width: 767px) {
  .info {
    width: 300px;
  }

  .grid {
    width: 300px;
    height: 300px;
  }

  .valid,
  .bomb,
  .checked {
    width: 30px;
    height: 30px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .reset-button {
    padding: 10px 30px;
    font-size: 16px;
  }
  .flag {
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
