* {
  margin: 0;
  padding: 0;
  font-family: Poppins;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

body {
  background-color: #ddfffe;
  text-align: center;
  position: relative;
}
body::selection {
  background: 0 0;
}

/* Go Home */
.go-home {
  position: absolute;
  width: 40px;
  height: auto;
  top: 40px;
  right: 40px;
}
.go-home a svg {
  transition: all ease 0.3s;
}
.go-home:hover a svg {
  scale: 0.9;
}

.main {
  padding: 50px 10px 20px;
}
.title {
  font-size: 45px;
  font-weight: 700;
  color: #00cdc9;
  text-transform: uppercase;
}
.container {
  height: 70vh;
  display: flex;

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

.game {
  height: 60vmin;
  width: 60vmin;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5vmin;
}

.box {
  height: 18vmin;
  width: 18vmin;
  border-radius: 1rem;
  border: none;
  box-shadow: 0 0 0.7rem rgba(0, 0, 0, 0.2);
  font-size: 8vmin;
  color: #011329;
  background-color: #ffeee1;
}

#new-btn,
#reset-btn {
  padding: 0.8rem 1.5rem;
  font-size: 1.25rem;
  background-color: #00cdc9;
  color: #fff;
  border-radius: 10px;
  border: none;
}

#msg {
  color: #00cdc9;
  font-size: 5vmin;
}

.msg-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4rem;
}

.hide {
  display: none;
}
@media (max-width: 700px) {
  .title {
    font-size: 35px;
    margin-top: 10vh;
  }

  .container {
    height: 45vh;
  }
}
