@font-face {
  font-family: 'Mandioca';
  src: url('mandioca.latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body,
html {
  background: #0e22d2;
  font-family: 'Mandioca', sans-serif;
  color: white;
  height: 100vh;
}

.page-width {
  padding-left: 5rem;
  padding-right: 5rem;
}

.image-banner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 0.5rem;
}


.image-banner__img {
  position: relative;
}

.image-banner__clock {
  position: relative;
}

.image-banner__clock>div {
  aspect-ratio: 1 / 1;
  margin-left: auto;
}

.image-banner>div img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
  transform: translate(-50%, -50%);
}

.image-banner>div img:first-child {
  z-index: 1;
  max-width: 68%;
}

.image-banner-content p {
    margin-bottom: 0px;
    margin-top: 0rem;
    padding-left: 5px;
}


.image-banner-content h2 {
  font-size: 60px;
  margin-top: 0rem;
  margin-bottom: 0rem;
  color: white;
  font-weight: 400;
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 10px;
}

.header-grid h1 {
  font-size: 20px;
  margin: 0rem;
}

.grid-social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}

.grid-social-links>a {
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-social-links>a svg {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 990px) {
  .image-banner {
    grid-template-columns: repeat(1, 1fr);
  }


  .page-width {
    padding-left: 15px;
    padding-right: 15px;
  }

  .image-banner-content h2 {
    font-size: 40px;
    margin-top: 5px;
  }

  .image-banner {
    padding-top: 60px;
    gap: 40px;
  }
}