main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  background-color: var(--bs-dark);
  background-image: url("../images/bg-space1080p.jpg");
  background-size: cover;
  background-position: center;
  color: white;
}
.img-profile {
  max-width: 20em;
  border-radius: 1em;
  border: 0.5em var(--bs-gray-800) solid;
  overflow: hidden;
  display: block;
  margin: 0 auto;
}

main .box-1,
main .box-2 {
  padding: 1em;
}

main .icons {
  height: 3em;
  border-radius: 0.3em;
  background-color: var(--bs-gray-800);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .box-1 .icons {
  margin-top: 0.5em;
}
main .icons a {
  height: 70%;
}
main .icons img {
  height: 100%;
}
main .icons a + a {
  margin-left: 0.75em;
}

main .box-2 {
  width: 50%;
}

main .box-2 h2 {
  text-align: center;
  margin-bottom: 1em;
}
main .text-block {
  border-radius: 0.3em;
  background-color: var(--bs-gray-800);
  padding: 1em;
  transition: background-color 0.2s ease-in-out;
}
main .text-block:hover {
  background-color: var(--bs-gray-700);
}
main .text-block a {
  color: #17f4ff;
}
main .text-block a:hover {
  color: #049da5;
}

@media only screen and (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

@media only screen and (max-width: 1200px) {
  main .box-2 {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
  main {
    flex-direction: column;
  }
  main .box-1,
  main .box-2 {
    width: 100%;
  }
}
