html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Reddit Sans", sans-serif;
  font-optical-sizing: auto;
  overflow: hidden;
}

.container {
  display: grid;
  grid-template-columns: 1fr 33vw;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.container .left {
  box-sizing: border-box;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container .left .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99;
  padding: 80px 0;
  width: 50%;
  margin: auto;
  text-align: center;
}

.container .left .content h1 {
  font-size: 3rem;
  color: #322D3C;
}

.container .left .content p {
  font-size: 1.1rem;
  color: #6e6e6e;
}

.container .left .content .logo {
  height: 150px;
  width: auto;
  margin-bottom: 20px;
}

.container .right {
  box-sizing: border-box;
  height: 100%;
  background-color: #f8f8f8;
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.container .right .image {
  height: 15vw;
  width: 15vw;
  margin: auto;
  object-fit: cover;
  border-radius: 9999px;
  box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.5),
    0 0 0 40px rgba(255, 255, 255, 0.3),
    0 0 0 60px rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.container .right p {
  font-size: 1.1rem;
  line-height: 1.6rem;
  color: #6e6e6e;
  margin: 0;
  max-width: 80%;
  text-align: center;
}

.container .right h2 {
  font-size: 1.6rem;
  color: #322D3C;
  margin: 10px 0 0 0;
}

.container .right ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 60px 0;
}

.container .right ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.container .right ul li img {
  height: 42px;
  width: 42px;
  object-fit: cover;
  filter: brightness(0) saturate(100%) invert(60%) sepia(99%) saturate(3201%) hue-rotate(9deg) brightness(94%) contrast(101%);
}

.container .right ul a {
  color: #322D3C;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
}


@media (min-width: 769px) and (max-width: 1366px) {
  .container .left .content {
    padding: 40px 0;
    width: 60%;
  }

  .container .left .content h1 {
    font-size: 2rem;
  }

  .container .left .content p {
    font-size: 1rem;
  }

  .container .right .image {
    height: 10vw;
    width: 10vw;
  }

  .container .right p {
    font-size: 1rem;
  }

  .container .right ul li img {
    height: 32px;
    width: 32px;
  }

  .container .right ul a {
    font-size: 1.1rem;
  }
}

/* Media queries for mobile */
@media (max-width: 768px) {
  html, body {
    height: auto;
    overflow: auto;
  }

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

  .container .left {
    text-align: center;
  }

  .container .left .content {
    padding: 80px;
    width: auto;
  }

  .container .right .image {
    height: 30vw;
    width: 30vw;
  }
}

@media (max-width: 576px) {
  html, body {
    height: auto;
    overflow: auto;
  }

  .container .left .content {
    padding: 80px 40px;
    width: auto;
  }

  .container .right {
    padding: 80px 40px;
  }

  .container .right .image {
    height: calc(60vw - 60px);
    width: calc(60vw - 60px);
  }
}