@import url('https://fonts.googleapis.com/css?family=Blinker&display=swap');
@import url('menu.css');
@import url('contactorapido.css');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Blinker', sans-serif;
}

header {
    width: 100%;
    height: 70px;
    background: #333;
    color: #fff;
    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.contenedor {
    width: 98%;
    margin: auto;
}

header .contenedor {
    display: table;
}

section {
    padding: 20px;
    width: 100%;
    margin-bottom: 20px;
}

@media (min-width: 1024px){
    .contenedor {
        width: 950px;
    }
}