Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
1
respuesta

Haga lo que hicimos

@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; }

.header__menu{ margin: 1.5% 0%; display: flex; padding: 20px 300px; gap: 80px; font-family: "Montserrat",sans-serif; font-size: 24px; font-weight: 400; color: #22D4FD; } .header__menu__link:hover{ background-color: azure; }

body{ box-sizing: border-box; background-color: #000000; color: #F6F6F6; }

.titulo-destaque { color: #22D4FD;}

.titulo-destaque:hover{ background-color:#d9dbf1; }

.presentacion { display: flex; align-items: center; margin: 6% 15%; 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; gap:15px;

}

.presentacion__enlaces__link{ width: 378px; text-align: center; padding: 21.5px 0; border-radius: 8px; font-size: 24px; font-weight: 600; 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{ cursor:pointer; background-color: #272727; }

.footer{ background-color: #22D4FD; color:#000000; text-align: center; font-family: "Montserrat",sans-serif; font-size: 24px; font-weight: 400; padding: 24px; } Ingrese aquí la descripción de esta imagen para ayudar con la accesibilidad

1 respuesta

Resultados de cambios aplicados:

Ingrese aquí la descripción de esta imagen para ayudar con la accesibilidad

Codigo en css

@import url('https://fonts.googleapis.com/css2?family=Krona+One&family=Montserrat:wght@400;600&display=swap');


* {
    padding: 0;
    margin:0;
}

body{
    box-sizing: border-box;
    background-color: #000000;
    color: #F6F6F6;
}


.titulo-destaque {
    color: #22D4FD; ;
}

.presentacion {
    padding: 8% 15%;
    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:10px;
    cursor: pointer;
    transition: background-color .3s ease, color .3s ease, transform 03s ease;
}

.presentacion__enlaces__link:hover{
    background-color: #fff;
    color: #ffff;
    box-shadow: inset 600px 0 0 0 #22D4FD;
    transform: scale(1.1);
}

.footer{
    background-color: #22D4FD;
    padding: 24px;
    color: #000000;
    text-align: center;
    font-family: 'Monserrat', sans serif;
    font-size: 24px;
    font-weight: 400; ;

}

.header_opciones{
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_opciones_link{
    font-size: 18px;
    color: #333;
    margin: 0 10px;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 8px;
    padding: 10px 15px;
}

.header_opciones_link:hover{
    background-color: #fff;
    color: #ffff;
    box-shadow: inset 600px 0 0 0 #22D4FD;
}