@font-face {
  font-family: 'UNIVERSITY';
  src: url('University.otf') format('opentype');
}


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;
  background-color: #040404;
  font-family: 'myFont';
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s ease;
  width: fit-content;
  text-align: center;
  min-width: 300%;
}


.back {
    margin-top:20px;
    background-color: none;
    color: #040404;
    font-weight: bold;
    font-family: 'myFont';
    font-size: 18px;
      display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  width: fit-content;
  text-align: center;

    
}

.back img{
    width:50px;
    height:50px;
}


.back:hover {

     transform: scale(1.1);
}

.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) {
    .buttons a {

  min-width: 150%;
}

  html {
    background-size: cover;
   background: url('../backgroundMovil.jpeg') no-repeat center center fixed;
  }

    
}



