@import url("https://use.typekit.net/jxt5cgk.css");
 
* {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
}
 
 html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 10px;
}

body {
    background: url('bg.jpg') no-repeat top left;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2.4rem;
}

.logos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logos img {
    padding: 1rem 0rem;
    max-width: 12rem;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-family: futura-pt-condensed, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    font-size: 3.8rem;
    line-height: 4.4rem;
    text-align: center;
    color: #FFFFFF;
    margin: 1rem 0 0 0;
}

@media all and (min-width: 768px) {
    .logos {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    
    .logos img {
        padding: 0rem 2.4rem;
        max-width: 22rem;
    }
    
    h1 {
        font-size: 6.4rem;
        line-height: 6.4rem;
        max-width: 70%;
        margin: 2.4rem 0 0 0;
    }
}

@media all and (min-width: 1024px) {
    .logos img {
        max-width: 25rem;
    }
    
    h1 {
        font-size: 9.5rem;
        line-height: 9.5rem;
        max-width: 75%;
        margin: 3.2rem 0 0 0;
    }
}
