html, body {
    width: 100%;
    height: 100%;
    background-color: #ccc;
    font-family: 'Catamaran', Helvetica Neue, Helvetica, Arial, sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
}

#container {
    width: 1100px;
    height: 700px;
    min-height: 700px;
    min-width: 340px;
    max-width: calc(100% - 20px);
    max-height: calc(100% - 20px);
    background-color: white;
    display: flex;
    flex-direction: column;
    border: 10px #888 solid;
    box-shadow: 0 5px 15px 0 rgba(0,0,0,0.25);
    position: relative;
}

#logo {
    width: calc(100% - 60px);
    /* opacity: 0.47; */
    max-width: 650px;
    margin: 30px;
    background: white;
}

h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 70px 30px 20px 30px;
    line-height: 48px;
}

#content {
    justify-content: center;
}

#content .description {
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0.3px;
    margin: 0 30px 20px 30px;
}

#content .contact {
    margin: 30px 30px 20px 30px;
}

#content .contact a{
    font-weight: 400;
    font-size: 30px;
    line-height: 32px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

a:link {
    display: inline-block;
    overflow: hidden;
    color: black;
    text-decoration: none;
}

#roof {
    width: 500px;
    position: absolute;
    bottom: 70px;
    right: 30px;
    z-index: 200;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #888;
    width: 100%;
    height: 40px;
    color: white;
    margin-top: auto;
}

footer p {
    text-align: center;
    opacity: 0.7;
    font-size: 15px;
    margin: 10px 20px 0 20px;
    line-height: 17px;
}

@media only screen and (max-width: 1120px) {
    body {
        align-items: flex-start;
        justify-content: flex-start;
    }

    #container {
        max-width: 100%;
        height: 100%;
        background-color: white;
    }

    h1 {
        margin-top: 20px;
        font-size: 32px;
        line-height: 40px;
    }

    #container .contact {
        font-size: 30px;
    }

    #roof {
        width: 45%;
        max-width: 500px;
    }
}

@media only screen and (max-width: 750px) {
    #container {
        text-align: center;
    }
    
    #roof {
        margin: 0 auto;
        bottom: 70px;
        right: -50%;
        left: -50%;
    }
}

@media only screen and (max-height: 720px) {
    body {
        align-items: flex-start;
    }
}
