*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 100%;
}

.container {
  margin: 0 auto;
  text-align: center;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url("https://cdn.synthetix.com/assets/images/Blob2.svg");
  background-repeat: no-repeat;
  background-position: 0% 80%;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 2vw, 20px);
}

/* HEADER */
header {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  width: 100%;
  gap: 1rem;
}

header .nav_item {
  height: 100%;
}

header .nav_item img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

header .menu_icon-blob {
  border-radius: 2rem;
  border: 2px solid #c9249e;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  background: linear-gradient(135deg, #6f3e9e, #c9249e);
  cursor: pointer;
  max-height: 100%;
  min-height: 32px;
  min-width: 32px;

  /* WEBKIT */
  -webkit-border-radius: 2rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: -webkit-linear-gradient(315deg, #6f3e9e, #c9249e);
  background: -o-linear-gradient(315deg, #6f3e9e, #c9249e);
}

header .menu_icon-blob .link {
  text-decoration: none;
  color: #fff;
}

header .menu_icon-blob .contact_icon {
  display: none;
}

header .menu_icon-blob .contact_text {
  display: inline;
}

/* MAIN */
main {
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 70%;
  width: 100%;
  height: 100%;
  align-items: center;
  padding: 1em 0 2em 0;
}

main .message_wrapper {
  width: 80%;
}

main .www {
  margin-bottom: auto;
  margin-right: auto;
}

main .www,
main .connection {
  position: relative;
  max-width: 100%;
  height: auto;
  display: block;
}

main .www .img,
main .connection .img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 200px;
  min-width: 75px;
}

main .www .mouse,
main .connection .mouse {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25%;
  height: auto;
}

main .www .conn_icon,
main .connection .conn_icon {
  position: absolute;
  top: -10px;
  left: -20%;
  width: 50%;
  height: auto;
}

main .connection {
  margin-top: auto;
  margin-bottom: 0;
  margin-left: auto;
}

main .blob1 {
  background-image: url("https://cdn.synthetix.com/assets/images/Blob1.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  aspect-ratio: 730 / 722;
  max-width: 730px;
  max-height: 722px;
  width: 100%;
  min-width: 550px;
  margin: 0 auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 0 2em;
}

main .blob1 a {
  color: white;
}

/* FOOTER */
footer {
  height: 12%;
  min-height: 100px;
  background-color: white;
}

.footer_container {
  height: 100%;
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
  border-top: solid 2px #d9d9d9;
  padding: 1em 0;
}

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

.footer_container .separator {
  border-right: 2px solid black;
}

.footer_container .info {
  font-size: 1em;
  padding-bottom: 0.5em;
}

.footer_container .info .separator {
  margin: 0 1.5em;
}

.footer_container .policies {
  font-size: 0.75em;
}

.footer_container .policies .separator {
  margin: 0 0.5em;
}

.footer_container .social_media *[class^="iconoir-"]::before {
  width: 2em;
  height: 2em;
  background: linear-gradient(135deg, #6f3e9e, #c9249e);
}

/* RESPONSIVE MODE */
@media (max-width: 768px) {
  main {
    gap: 1em;
    justify-content: center;
    flex-direction: column;
    position: relative;
    width: 100%;
    min-width: 475px;
    min-height: 470px;
  }

  main .blob1 {
    min-width: auto;
  }

  main .www,
  main .connection {
    max-width: 72px;
  }
}

@media (max-width: 480px) {
  .container {
    background-image: none;
  }

  /* Header */
  .container header {
    height: 3rem;
  }

  .container header .menu_icon-blob {
    height: 2em;
    width: 2em;
    border-radius: 50%;
    padding: 0;
  }

  .container header .menu_icon-blob .contact_icon {
    display: inline;
  }

  .container header .menu_icon-blob .contact_text {
    display: none;
  }

  /* Main */
  .container main {
    gap: 1em;
    justify-content: center;
    flex-direction: column;
    position: relative;
    min-width: 330px;
    min-height: 350px;
  }

  .container main .connection {
    bottom: -10%;
    right: 0;
  }

  .container main .conn_icon {
    display: none;
  }

  .container main .blob1 {
    min-width: 330px;
    min-height: 350px;
  }

  /* Footer */
  .container .footer_container {
    flex-direction: column;
  }

  .container .footer_container .separator {
    border-right: 1px solid black;
    margin: 0 0.5em;
  }
}
