body {
  background-color: black;
  background-image: url("../IMG/20241220_212743.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-family: "Bitter", sans-serif;
}

.hero {
  display: flex;
  height: 87.5vh;
  width: auto;
  align-items: center;
  justify-content: center;
}

.hero .img {
  margin-left: 7rem;
  margin-right: 5rem;
  width: 270px;
  height: 270px;
  box-shadow: 1px 1px 5px rgba(1, 1, 3, 0.5);
  border-radius: 10rem;
}

.hero .text {
  margin-top: 1rem;
  margin-left: 5rem;
  margin-right: 3rem;
  text-align: center;
  color: white;
}

.hero .text .name {
  font-size: 2rem;
  font-weight: bold;
}

.hero .social {
  margin-right: 7rem;
  margin-left: 5rem;
  text-wrap: wrap;
}

.hero .social .item {
  margin-bottom: 1.5rem;
  padding: 0.75rem 10rem 0.25rem 10rem;
  color: white;
  background-color: rgba(0, 0, 0, 0.75);
  border: solid 3px white;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

.hero .social .item:hover {
  color: rgb(0, 0, 0);
  background-color: rgba(255, 255, 255, 0.5);
  border: solid 3px rgb(0, 0, 0);
}

.hero .social .item .icon {
  margin-right: 0.5rem;
}

.footer {
  display: flex;
  color: white;
  justify-content: center;
  align-items: center;
}

#myBtn {
  background-color: rgba(0, 0, 0, 0);
  color: white;
  border: none;
  transition: 0.3s;
}

#myBtn:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: black;
  border-radius: 2.5px;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.8);
}

@keyframes modalIn {
  from {
    /* transform: translateY(-750px); */
    opacity: 0;
  }
  to {
    /* transform: translateY(0px); */
    opacity: 1;
  }
}

@keyframes modalOut {
  from {
    /* transform: translateY(-750px); */
    opacity: 1;
  }
  to {
    /* transform: translateY(0px); */
    opacity: 0;
  }
}

/* Modal Content/Box */
.modal-content {
  background-color: rgba(255, 255, 255, 0);
  color: white;
  margin: 10% auto;
  padding: 20px;
  width: 80%;
  line-height: 3rem;
}

.modalHeader {
  display: flex;
}

.modal-content a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.modal-content a:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: black;
  border-radius: 2.5px;
  padding: 0.3rem;
}

/* The Close Button */
.close {
  position: absolute;
  top: 1.5rem;
  right: 1.4rem;
  color: #ffffff;
  font-size: 35px;
  transition: 0.3s;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 0;
}

.close:hover,
.close:focus {
  background-color: rgba(255, 255, 255, 0.5);
  color: #000000;
  border-radius: 50%;
  text-decoration: none;
  cursor: pointer;
}

/* Media Queries */
@media (max-width: 1105px) {
  html {
    font-size: 76%;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    height: 100vh;
  }

  .hero .img {
    margin-right: 0rem;
    margin-left: 0rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
    width: 200px;
  }

  .hero .text {
    margin: 0;
  }

  .hero .social {
    margin: 0;
  }

  .hero .social .item {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    padding: 1rem 8rem 0.5rem 8rem;
  }

  .close {
    top: 1.5rem;
    right: 1.5rem;
    font-size: 28px;
  }
}
