@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');

html {
  min-height: 100%;
  position: relative;
}
body {
    margin: 0;
    margin-bottom: 40px;
    font-family: 'Fjalla One', sans-serif;
    /* background: linear-gradient(0deg, rgb(253, 143, 103), rgb(212,99,163));
    min-height: 110vh; */
    background: url('../img/fondo.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
}
section {
  width: 50%;
  margin: auto;
  text-align: center;
  margin-top: 30px;
}
a {
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-color: currentcolor;
  color: white;
  transition-property: color;
  transition-duration: 1s;
  transition-timing-function: ease;
  transition-delay: 0s;
}
a:hover {
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
}
.profile-picture {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10%;
  height: 186px;
  max-width: 100%;
  max-height: 100%;
  width: 186px;
  min-height: 186px;
  margin: 5% auto 0 auto;
}
.profile-name {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0;
  border: 0 solid;
  text-shadow: 0 0 5px black;
  padding: 15px 30px 15px 30px;
}

.cuerpo-link{
  padding-bottom: 80px;
}
.links {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  display: block;
  border-radius: 15px;
  padding: 20px;
  margin: 15px ;
  background-color: #ffffff;
  color: #000000;
}
.links:hover {
  color: #ffb400;
  background-color: #ffffff;
}
footer {
  text-align: center;
  background-color: black;
  position: absolute;
  padding-top: 10px;
  bottom: 0;
  width: 100%;
  height: 40px;
  color: white;
}

@media screen and (max-width: 720px) {
    section {
        width: 100%;
    }
    body {
      background-color: rgba(219, 3, 3, 0);
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment: fixed;
      background-size: cover;
      background-image: url('../img/fondo_cel.jpg');
    }
}
