en la pág sobre mí el texto se estira no sé porque pero en la pestaña home si se aplica correctamente la distribución
Mi Css:
@import url('https://fonts.googleapis.com/css2?family=Krona+One&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
padding: 0;
margin: 0;
}
body {
background-color: #000000;
color: #F6F6F6;
box-sizing: border-box;
}
.header{
padding: 2% 0% 0% 15% ;
}
.header_menú{
display: flex;
gap: 80px;
}
.header_menú_botón{
font-size: 24px;
font-family: "Montserrat", sans-serif;
font-weight: 600;
color: #22D4FD;
text-decoration: none;
}
.presentación{
display: flex;
align-items: center;
padding: 6% 15%;
justify-content: space-between;
}
.contenido_presentación{
max-width: 615px;
width: 100%;
display: flex;
flex-direction: column;
gap: 40px;
}
.destaco_título{
color: #22D4FD;
}
.presentación_contenido_título{
font-size: 36px;
font-family: "krona One","sans-serif" ;
}
.presentación_contenido_párrafo{
font-size: 24px;
font-family: "Montserrat", sans-serif;
}
.presentación__enlaces{
display: flex;
gap: 32px;
justify-content: space-between;
flex-direction: column;
align-items: center;
}
.presentación__enlaces_link{
width: 378px;
text-align: center;
padding: 21.5px;
border-radius: 8px;
font-family: "Montserrat", sans-serif;
font-size: 24px;
font-weight: 600;
text-decoration: none;
color: #F6F6F6;
border: 2px solid #22D4FD;
display: flex;
justify-content: center;
gap: 10px;
}
.imagen{
width: 700px;
height: 550px;
padding: 6%;
border-radius: 160px;
}
.presentación__enlaces_subtítulo{
font-family: "krona One","sans-serif" ;
font-size: 24px;
font-weight: 400;
}
.presentación__enlaces_link img {
width: 32px;
height: 32px;
object-fit: contain;
}
.presentación__enlaces_link:hover{
background-color: #272727;
}
.footer{
background-color: #22D4FD;
padding: 24px;
color: #000000;
text-align: center;
font-family: "Montserrat", sans-serif;
font-size: 24px;
font-weight: 400;
}