body {
    font: 'Times New Roman';
}

* {
    margin: 0px;
    padding: 0px;

}

.lienzo {
    margin: auto;
    margin-top: 20px;
    width: 800px;
    height: fit-content;
    background-color: aliceblue;
    display: flex;
    justify-content: center;
    align-items: center;

} 

.padre {
    margin: 30px;
    width: 90%;
    height: fit-content;

}

.hijo {
    margin: auto;
    width: 75%;
    height: fit-content;
    display: flex;
    justify-content: center;

}

nav {
    width: 99%;
    margin: auto;
    background: rgb(30, 63, 163);
    background: linear-gradient(90deg, rgba(30, 63, 163, 1) 0%, rgba(24, 130, 117, 1) 33%, rgba(82, 230, 142, 1) 77%, rgba(160, 208, 200, 1) 100%);
    font-size: 20px;
    margin-top: 10px;
    top: 0;


}

.menu {
    list-style: none;
    display: flex;
    text-justify: center;

}

.menu>li>a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;

}

.menu>li:hover {
    background-color: darkslategrey;

}

.submenu li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px;
    justify-content: center;
    align-items: center;

}

.submenu {
    position: absolute;
    display: none;
    list-style: none;
    width: 200px;
    background-color: rgba(0, 0, 0, .5);
    justify-content: center;
    align-items: center;

}

.menu li:hover .submenu {
    display: block;

}

.submenu li:hover {
    background-color:darkslategray;

}


h {
    margin-bottom: 5px;
    margin-top: 10px;
    font-size: large;
    color: black;

}

h1 {
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: large;
    color: white;
}

p {
    margin-bottom: 10px;
    font-size: small;
    text-align: justify;
    color: black;

}

p1 {
    font-size: small;
    text-align: justify;
    color: darkslategrey;

}

p2 {
    font-size:small;
    text-align: justify;
    color: white;

}