body {
    background-color: #ffffff;
}

header {
    background-color: #4988d1;
    padding: 2rem;
    margin: 0rem;
    border-color: #4988d1;
    border-radius: 1rem;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul li {
    margin: 0.5rem;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 2rem;
}

nav ul li a:hover {
    color: #a5a8aa;
}

nav img {
    height: 10rem;
}

section {
    background-color: #81acdd;
    padding: 1rem;
    margin: 0.5rem;
    border-color: #81acdd;
    border-radius: 1rem;
}

.titulo {
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
    margin: 3rem;
    text-shadow: 0.5rem 0.5rem 0.6rem rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    background-color: #4988d1;
    color: white;
    padding: 1rem 1rem;
    border-radius: 2rem;
    margin: 0.5rem;

}

.texto {
    font-size: 1.2rem;
    color: white;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    background-color: #4988d1;
    padding: 1rem 1rem;
    border-radius: 2rem;
    margin: 0.5rem;
}


footer {
    background-color: #4988d1;
    padding: 2rem;
    margin: 0rem;
    border-color: #4988d1;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body p {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: left;
}