*{
	font-family: "Inter", sans-serif;
  	font-optical-sizing: auto;
	  font-weight: 300;
	  font-style: normal;
}

.container {
	width: 80%;
}

.logo {
	max-width: 250px;
	margin-top: 45px;
  margin-bottom: 45px;
}

@media only screen and (min-width:601px) {
	.fondo-top {
		background-image: url(../img/fondo1.png);
		background-repeat: no-repeat;
		background-position: right top;
	  	background-size: 30%;
	}

	.fondo-left {
		background-image: url(../img/fondo-left.png);
		background-repeat: no-repeat;
		background-position: bottom left;
	    background-size: 25%;
	}

	.fondo-right {
		background-image: url(../img/fondo-right.png);
		background-repeat: no-repeat;
		background-position: bottom right;
	    background-size: 25%;
	}
}


@media only screen and (max-width:600px) {
	/*.fondo-top {
		background-image: url(../img/fondo1.png);
		background-repeat: no-repeat;
		background-position: right top;
	  	background-size: 46%;
	}*/

	#col1 {
		text-align: center;
	}

	.fondo-left {
		background-image: url(../img/fondo-left.png);
		background-repeat: no-repeat;
		background-position: bottom left;
	    background-size: 50%;
	}

	.fondo-right {
		background-image: url(../img/fondo-right.png);
		background-repeat: no-repeat;
		background-position: bottom right;
	    background-size: 78%;
	}
}

.foto-perfil {
	max-width: 400px;
 	width: 100%;
}

h1 {
	width: fit-content;
	margin: 2.8rem auto 1.68rem auto;
}

.my-title {
	font-weight: 500;
} 

.my-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px; /* Grosor de la línea */
  background-color: black; /* Color de la línea */
  position: relative;
  top: 5px; /* Ajusta la distancia */
}

h2 {
	font-weight: 200;
}

h5 {
	font-weight: lighter;
}

.iconos-sociales {
	width: 50px;
}

.contact-text {
	color:#000;
	font-size: 22px;
}

.contact-text i {
	color: #C0683C;
}
.contact-text:hover {
	text-decoration: underline;
}

.margin-bottom-social {
	margin-bottom: 45px;
}

.margin-top-5 {
	margin-top: 5em;
}

.margin-bottom-5 {
	margin-bottom: 5em;
}

.margin-bottom-3 {
	margin-bottom: 3em;
}




/* Estilos básicos para el enlace 1*/
.social-link {
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background: #333;
  border-radius: 50%;
  position: relative;
  transition: .5s;
}

/* Estilos para la imagen dentro del enlace */
.social-link img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: .5s;
}

/* Círculo de fondo antes del hover */
.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #87B4D4;
  transition: .5s;
  transform: scale(.9);
  z-index: -1;
}

/* Efectos hover para el círculo */
.social-link:hover::before {
  transform: scale(1.1);
  box-shadow: 0 0 15px #87B4D4;
}

/* Efectos hover para el enlace */
.social-link:hover {
  color: #eca80e;
  box-shadow: 0 0 5px #87B4D4;
  text-shadow: 0 0 5px #87B4D4;
}

/* Efectos hover para la imagen */
.social-link:hover img {
  transform: scale(1.1);
}