Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
0
respuestas

[Duda] PROBLEMAS DESARROLLANDO EL FOOTER

Buenas noches tengo un problema a la hora del footer, no se si este problema es del navegador o tengo algun codigo mal. Ingrese aquí la descripción de esta imagen para ayudar con la accesibilidad

ESTE ES MI STYLE.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: black;
color:white;
height: 100vh;
box-sizing: border-box;
}

strong{
color: #22D4FD;
}

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

.presentacion{
display: flex;
align-items: center;
margin: 10%;
justify-content: space-between;
}

.presentacion__contenido{
width: 615px;
display: flex;
flex-direction: column;
gap: 40 px;
}

.presentacion__contenido__titulo{
font-size: 36px;
font-family: "Montserrat", sans-serif;
}

.presentacion__contenido__texto{
font-size: 24px;
font-family: "Krona One", sans-serif;
}

.presentacion__enlaces{
display: flex;
justify-content:space-between;
flex-direction: column;
align-items: center;
gap: 32px;
}

.presentacion__contenido__subtitulo{
font-family: "Krona One", sans sans-serif;
font-size: 24px;
font-weight: 400;
}

.presentacion__enlaces__link{
width: 378px;
text-align: center;
padding: 21.5px 0;
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;
}

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

ESTE ES EL INDEX.HTML
Tengo la duda de por que el main me aparece en color rojo
Ingrese aquí la descripción de esta imagen para ayudar con la accesibilidad