<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
body {
  position: relative;
}
main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-wrapper {
  width: 125px;
  display: flex;
  flex-direction: column;
  height: 150px;
  margin-right: 25px;
}

h1 {
  text-align: center;
  font-size: 6rem;
}

.btn {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn:hover {
  background-color: #2980b9;
}

.letter-display {
  width: 80svh;
  height: 80svh;
  padding: 20px;
  background-color: #bbae9e;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);     
  gap: 10px;
  border-radius: 15px;
  margin-right: 150px;
}
.grid-item {
  background-color: #f9fffb;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 4rem;
  color: #012;
  border-radius: 15px;
}
.timer {
  font-size: 5rem;
}
/*------------------------------------------------&gt;
  Brand Footer 
&lt;------------------------------------------------*/

footer {
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0;
  z-index: 1000;
  img {
    width: 200px;
  }
}

@media (max-width: 1000px) {
  .letter-display {
    width: 70svw;
    height: 70svw;
  }
  h1 {
    font-size: 5rem;
  }
}
@media (max-width: 1000px) {
  main {
    flex-direction: column;
  }
  .btn-wrapper {
    flex-direction: row;
    height: 120px;
    width: 240px;
    justify-content: space-between;
    p {
      line-height: 120px;
    }
    button {
      margin: 25px 0;
    }
  }
}
@media (max-width: 650px) {
  .letter-display {
    width: 80svw;
    height: 80svw;
  }
  h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 480px) {
  .letter-display {
    width: 70svw;
    height: 70svw;
  }
  .btn-wrapper {
    height: 80px;
    width: 180px;
    p {
      line-height: 80px;
    }
  }
  .grid-item {
    font-size: 2rem;
  }
  .timer {
    font-size: 2rem;
  }
  h1 {
    font-size: 2rem;
  }
}</pre></body></html>