/*
 =========================================================
 * Filo's dark theme - Ready
 =========================================================
 * Page: https://filo.gg
 * Copyright 2023 iLxlo_ (https://github.com/ilxlodev)
 * Designed by CSDIT Coded by iLxlo_
 =========================================================
 * Not allowed to copy substantial portions of the software without prior authorization.
 */

.ready {
  width: 80vw;
  display: flex;
  margin: 125px auto;
  text-align: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  justify-content: center;
}

.ready .title h2 {
  font-weight: 900;
  font-size: 45px !important;
  color: var(--filogg-color-text);
}

.ready .button-row {
  margin-top: 15px;
}

/*
 =========================================================
 * Media queries
 =========================================================
 * Responsive is the future \ ✪ ω ✪ /
 */

@media (max-width: 1366px) { /* Laptop resolution */

  .ready .title h2 {
    font-size: 35px !important;
  }

}

@media (max-width: 881px) { /* Mobile horizontal resolution */

  .ready .title h2 {
    font-size: 30px !important;
  }

}

@media (max-width: 768px) { /* Mobile vertical resolution */

  .ready {
    width: 90vw;
    margin: 100px auto;
  }

  .ready .title h2 {
    font-size: 25px !important;
  }

}