html, body {
    height: 100%;
}

html * {
    font-family: 'Roboto Slab', 'Roboto', 'Arial', sans-serif;
}

body {
    width: 100%;
    margin: 4em 0 0 0;

    background: #272838;
}

main {
    position: relative;

    display: flex;
    justify-content: space-between;
    align-items: stretch;

    width: 90%;
    min-height: 100vh;

    margin: 0 auto;

    border-top-left-radius: 25px;
    border-top-right-radius: 25px;

    background: #f5f5f5;

    box-shadow: 0 14px 28px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.08);

    overflow: hidden;
}

main .content {
    padding: 2em;
}

main .content .downloads {
    padding: 0;
}

main .content .downloads li svg {
    margin-right: 10px;
}

main .content li {
    list-style-type: none;
}


main .image {
    position: relative;

    width: 100%;

    background-image: url('../img/image.jpg');
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
}

main .image .logo {
    position: absolute;

    height: auto;

    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 99;
}

@media screen and (max-width: 599px) {
    main .image .logo {
        width: 80%;
    }
}

@media screen and (min-width: 600px) {
    main .image .logo {
        width: 50%;
    }
}

@media screen and (min-width: 900px) {
    main .image .logo {
        width: 40%;
    }
}

@media screen and (min-width: 1280px) {
    main .image .logo {
        width: 30%;
    }
}


footer {
    margin: 30px auto;
    color: #f5f5f5;
    text-align: center;
}

a {
    text-decoration: none;
    color: #dc2900;
}

a:hover {
    text-decoration: underline;
}


.heart {
    color: #dc2900;
}