*, *::after, *::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: beige;
}
.nav ul{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style-type: none;
}
.nav ul li{
    margin-left: 40px;
}
.nav ul li a{
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 18px;
}

/* cuerpo */

.cuerpo {
    padding: 50px;
    height: 700px;
    width: 100%;
    background-color: #eeeeff;
}
.cuerpo h1 {
    text-align: center;
    font-size: 60px;
}
.cuerpo p {
    text-align: center;
    font-size: 40px;
}












