html {
  background: url('background.jpeg') no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  border-radius: 20px;
 

  padding: 20px;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.profilePicture {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 10px;
}

.profile img:last-child {
  width: 100%;
  height: auto;
}


.buttons {
  display: flex;
  font-size:20px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}


.buttons a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
 
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s ease;
  width: fit-content;
  text-align: center;

}

.buttons a:hover {
  transform: scale(1.1);
}



.instagram {
    font-size:20px;
  margin-top: 20px;
}

.instagram a {
  display: inline-block;
  padding: 10px;
  border-radius: 50%;
  background-color: #f2f2f2;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.instagram a:hover {
  background-color: #333;
  color: #fff;
}


@media only screen and (max-width: 600px) {


  html {
      background: url('backgroundMovil.jpeg') no-repeat center center fixed;
    background-size: cover;
    
  }

    
}



