@font-face {
  font-family: font1;
  src: url("../fonts/Pacifico-Regular.ttf");
}
* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  background-image: url("../img/background2.avif");
  background-size: contain;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

body {
  height: 100vh;
  display: grid;
  grid-template-areas: "top" "main-container" "footer";
  grid-template-columns: auto;
  grid-template-rows: 5vh 90vh 5vh;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: black;
}

.main-container {
  grid-area: main-container;
  width: 80vw;
  height: 90vh;
  display: grid;
  grid-template-areas: "top top top top" "bottom bottom bottom bottom";
  grid-template-columns: 20vw 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  justify-content: baseline;
  align-items: center;
  flex-wrap: nowrap;
  overflow: auto;
}
.main-container .button {
  width: 20%;
  height: 95%;
  min-height: 150px;
  min-width: 200px;
  background-color: rgba(89, 99, 98, 0.404);
  border: 5px rgba(75, 63, 63, 0.651);
  border-style: solid;
  box-shadow: 0 0 4px 4px rgba(252, 101, 1, 0.473);
  cursor: pointer;
  margin-right: auto;
  margin-left: auto;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  overflow: hidden;
  gap: 3vh;
}
.main-container .button img {
  min-width: 100%;
  min-height: 90%;
  width: 100%;
  height: 90%;
  border-radius: 30px;
  border: 1px solid black;
  box-shadow: 0 0 20px 5px rgb(0, 0, 0);
}
.main-container .button p {
  font-size: calc(100% + 30px);
  font-family: font1;
  color: rgb(14, 4, 4);
  text-align: center;
  white-space: nowrap;
}
.main-container .button:hover {
  transform: scale(0.95);
  transition: 0.5s;
}
.main-container .top {
  grid-area: top;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-container .bottom {
  grid-area: bottom;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer {
  grid-area: footer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-style: italic;
  font-weight: bolder;
}

@media (max-width: 1924px) {
  .main-container {
    width: 100vw;
    height: 80vh;
    overflow: auto;
  }
  .main-container .button p {
    font-size: calc(100% + 10px);
  }
}
@media (max-width: 850px) {
  .main-container {
    min-height: 95%;
    grid-template-areas: "top top" "top top" "bottom bottom" "bottom bottom";
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto auto;
  }
  .main-container .top {
    flex-direction: column;
  }
  .main-container .bottom {
    flex-direction: column;
  }
  .main-container .button {
    margin-top: 20px;
    margin-bottom: 10px;
    min-width: 220px;
  }
  .footer {
    height: 5%;
  }
}

/*# sourceMappingURL=styles.css.map */
