/*css.style*/
@import url('https://fonts.googleapis.com/css2?family=Krona+One&family=Montserrat:wght@400;600&display=swap');
* {
padding: 0;
margin:0;
box-sizing: border-box;
}
body{
/*height: 100vh; Se deja en comentarios */
box-sizing: border-box;
background-color: #000000;
color: #F6F6F6;
}
.titulo-destaque {
color: #22D4FD; ;
}
.presentacion {
padding: 7.4% 15%; /* Se modifico margin por padding */
display: flex;
align-items: center;
justify-content: space-between;
}
.presentacion__contenido{
width: 615px;
display: flex;
flex-direction: column;
gap: 40px;
}
.presentacion__contenido__titulo{
font-size: 36px;
font-family: 'Krona One', sans-serif;
}
.presentacion__contenido__texto{
font-size: 24px;
font-family: 'Montserrat', sans-serif;
}
.presentacion__enlaces{
display: flex;
justify-content: space-between;
flex-direction: column;
align-items: center;
gap: 32px;
}
.presentacion__enlaces__subtitulo{
font-family: 'Krona One', sans-serif;
font-size: 24px;
font-weight: 400;
}
.presentacion__enlaces__link{
width: 378px;
text-align: center;
border-radius: 8px;
font-size: 24px;
font-weight: 600;
padding: 21.5px 0;
text-decoration: none;
color: #f6f6f6;
font-family: 'Montserrat', sans-serif;
border: 2px solid #22D4FD;
display: flex;
justify-content: center;
gap: 16px;
}
.presentacion__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;
}
.header__menu{
width: 100%;
background-color: #22D4FD;
justify-content: center;
display: flex;
align-content: center;
align-items: center;
flex-wrap:nowrap;
padding: 10px 0;
}
.header__menu__texto {
font-size: 18px;
color: #000000;
padding: 10px 15px;
text-decoration: none;
gap: 10px;
cursor: pointer;
}
.header__menu__texto:hover {
color: #007bff;
}
.header {
width: 100%;
height: 60px;
display: flex;
align-items: center;
}