@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..20');

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Lato', sans-serif;
  transition: background 0.2s ease-in-out;
}

:root {
  --white: #FEFFFC;
  --blue: #01B1E6;
  --grey: #d0d1e0;
  --black: #222121;
}

.container {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  padding: 16px;
}

.container:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.586);
  z-index: 1;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  z-index: 2;
}

.logo img {
  max-width: 270px;
}

h1 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--black);
  text-align: center;
  margin: 24px 0;
}

.content {
  display: grid;
  grid-template-rows: 200px 1fr;
  align-items: center;
}

.link-container {
  width: 100%;
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  justify-items: center;
}

a.link {
  min-width: 100px;
  min-height: 100px;
  height: 100%;
  width: 100%;
  max-width: 374px;
  aspect-ratio: 4/3;
  border-radius: 16px;
  box-shadow: 2px 2px 6px rgba(51, 51, 52, 0.161);
  border: 1px solid #dbddea;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.6));
  text-decoration: none;
}

.link:hover {
  background: linear-gradient(rgba(255, 255, 255, 1), rgba(204, 211, 218, 0.8));
  cursor: pointer;
}

.link span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  text-align: center;
  z-index: 1;
}

.material-symbols-outlined {
  font-variation-settings:
    'FILL'0,
    'wght'400,
    'GRAD'0,
    'opsz'24,
    'size'200
}

.link:hover span.material-symbols-outlined {
  color: var(--blue);
}

span.material-symbols-outlined {
  font-size: 280px;
  position: absolute;
  bottom: -40px;
  right: -36px;
  color: var(--grey);
  opacity: 0.4;
  z-index: 0;
  user-select: none;
}

@media screen and (max-width: 1000px) {
  span.material-symbols-outlined {
    font-size: 250px;
  }
}

@media screen and (max-width: 880px) {
  span.material-symbols-outlined {
    font-size: 250px;
  }

  .content {
    grid-template-rows: 160px 1fr;
  }

  .link-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 560px) {
  span.material-symbols-outlined {
    font-size: 220px;
  }

  .content {
    grid-template-rows: 100px 1fr;
  }

  .link-container {
    grid-template-columns: 1fr;
  }

  #footer {
    height: 120px;
  }
}
