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

Haga lo que hicimos en aula

*{
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
    color: white;
}

ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
}

.menu a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 10px 15px;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;

}

.container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 50px;
    max-width: 1200px; 
    margin: auto; 
    max-width: 1200px; 
    margin: auto; 
}

p {
    text-align: justify;
}

.texto {
    padding: 0px 50px;
}
span {
    color: aqua;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

img {
    height: 350px;
    width: 350px;
}

.botones {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.boton {
    background-color: aqua;
    color: black;
    font-size: 15px;
    border-radius: 10px;
    padding: 10px 40px 10px 40px;
    text-decoration: none;
    transition: background 0.3s;
    cursor: pointer;
}

footer {
    text-align: center;
}