@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
@import url(menu.css);
@import url(banner.css);
@import url(info.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: #e8e8e8
}

header {
    width: 100%;
    height: 100px;
    background: white;
    color: black;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    margin: auto;
}

.logPPal {
    height: 90px;
    margin: 5px;
    padding: 5px;
}

.contenedor {
    width: 98%;
    margin: auto;
}

h1 {
    float: left;
}

p {
    font-family:'Lato', sans-serif;
    color: rgb(255, 255, 255);
    text-align: justify;
    font-size: 13px;
}

header .contenedor {
    display: table;
}

section {
    width: 100%;
    margin-bottom: 25px;
    margin: auto;
}

footer .contenedor {
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 25px;
    color: darkgray;
}

.copy {
    font-size: 13px;
}

@media(min-width:1024px){
    .contenedor {
        width: 1000px;
    }

    p{
        font-size: 17px;
    }
}

@media (min-width:768px){
    p{
        font-size: 17px;
    }
}