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

*:focus { outline: none }

html,
body {
    background-color: #fff;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.clearfix { zoom: 1 }
.clearfix::after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

header {
    position: relative;
    background-color: white;
    background-image: url('./img/fondo.jpg');
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
    height: 100vh;
}

.title {
    position: absolute;
    top: 10%;
    left: 30%;
    width: 100%;
}

.title img {
    width: 60%;
}

.subtitle {
    color: black;
    position: absolute;
    top: 50%;
    left: 30%;
    font-size: 180%;
}

.logo {
    position: absolute;
    bottom: 1%;
    left: 50%;
}

.logo img {
    width: 30%;
}

@media only screen and (max-width: 767px){
    .subtitle {
        font-size: 100%;
    }

    .logo img {
        width: 60%;
    }
}