html { 
  background-color: #2c92f2;
}

body {
  margin: 0px;
  padding: 0px;
  height: 100vh;
  width: 100vw;
  color: #fff;
  text-align: center;
  font-family: "Nunito Sans", sans-serif;
  font-style: normal;
  line-height: normal;
   background: linear-gradient(
    136deg,
    #7db4e8 1.03%,
    #7db4e8 1.04%,
    #2c92f2 25.52%,
    #0049cc 50.52%,
    #003799 75.52%,
    #002466 100%
  );
}

.container {
  flex-direction: column;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: absolute;
  overflow: auto;
  gap: 4rem;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 25px;
  row-gap: 15px;
}

.title-container {
  max-width: 85%;
}

.title {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  margin-bottom: 0.5rem;
}

.description {
  font-size: 20px;
  font-weight: 300;
  margin: 0;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: fit-content;
  padding-bottom: 2rem;
}

footer > .footer-title {
  text-align: center;
  font-size: 14px;
  margin: 0;
  padding:0;
}

footer > a {
  font-size: 16px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  text-align: center;
}

.button-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 168.954px;
  height: 155.898px;
  border-radius: 20px;
  background-color: #fff;
  filter: drop-shadow(7px 5px 4px rgba(0, 0, 0, 0.25));
  flex-shrink: 0;
}

.button-image {
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 65%;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .cards-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .container {
    justify-content: initial;
    gap: 0rem;
  }

  .title{
    font-size: 22px;
  }
  
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .title-container {
    margin-top: 5rem ;
    margin-bottom: 0;
  }

  .cards-container {
    scale: 0.8;
    margin-bottom: 0;
  }
}