@media only screen and (max-width: 768px) {
  main {
    background: url("images/fondo_d_mobile.webp");
  }
}

@font-face {
  font-family: 'Montserrat';
  src: url('fonts/montserrat/static/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}


body {
  font-family: Arial, sans-serif;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  /* overflow: hidden; */
  position: relative;
  background-color: #000000;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}


main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  background: url("images/fondo_d.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.container {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 400px;
  position: relative;
  margin: auto;
}

.share-button {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  background: none;
  border: none;
  color: whitesmoke;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.fallback-menu {
  position: absolute;
  top: 50px;
  right: 10px;
  background-color: #DDB7AB;
  border-radius: 5px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease-in-out;
}

.fallback-menu:not(.hidden) {
  max-height: 200px;
}

.share-option {
  padding: 15px;
  cursor: pointer;
  transition: #EFD9D1 0.2s;
}

.share-option:hover {
  background-color: #EFD9D1;
}

.profile-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.subtitulo {
  display: block;
  margin-block-start: 1.33em;
  margin-block-end: 1.33em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  font-size: medium;
}

.links {
  margin-top: 20px;
}

.link-button {
  display: block;
  color: black;
  padding: 10px 20px;
  text-align: center;
  border: 3px solid #DDB7AB;
  border-radius: 10px;
  margin: 10px 0;
  text-decoration: none;
  transition: background-color 0.3s;
  transition: transform 0.3s ease;
}

.link-button:hover {
  background-color: #EFD9D1;
  transform: scale(1.05);
}

.contacto {
  padding-top: 7%;
}

.iconos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.svg_icono {
  height: 32px;
  width: 32px;
  fill: black;
  margin: auto;
}

.icono {
  height: 32px;
  width: 32px;
  text-decoration-line: none;
  margin-left: 10px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.icono:hover,
.share-button:hover {
  transform: scale(1.2);
}

.copyright {
  font-size: x-small;
}
