* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Gotham A", "Gotham B", sans-serif;
    font-size: .9rem;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 500;
    color: white;
}

p {
    margin-top: 0;
    margin-bottom: .5em;
}

a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

.landing-page {
    max-width: 100%;
    overflow-x: hidden;
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;

    background-color: #222;
    background-image: url("images/Lino-background-small.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.content {
    width: 90%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.logo {
    width: 100%;
    height: 0;
    padding-bottom: 60%;
    background-image: url("images/Transparent-Layered.gif");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.copy {
    text-align: center;
}

.line-one {
    text-transform: uppercase;
}

.line-two {
    font-weight: 300;
}

/*********************************************************
## media queries
*********************************************************/
@media (min-width: 700px) {
    body {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    .landing-page {
        background-image: url("images/Lino-background.jpg");
    }
}