body,
html {
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
    font-size: 18px;
}

body {
    background-color: #ffe600;
}

html * {
    overflow: hidden;
}

.container,
.page {
    position: relative
}

.page {
    height: calc(100% - 8rem);
    padding: 4rem;
}

.page > .illustration {
    width: 100%;
    height: 100%;
    background-image: url('illustration.svg');
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.illustration .contact-info {
    position: absolute;
    bottom: 11vh;
    left: 56vw;
}

.illustration img {
    display: block;
    height: 2rem;
}

.contact-info a {
    display: inline-block;
    padding: .5em 1em;
    border: 5px dashed transparent;
    border-radius: 1.1em;
}

.contact-info a:active,
.contact-info a:focus,
.contact-info a:hover {
    border-color: #ED6C6A;
}

a.contact-email {

}

a.contact-phone {

}

a.contact-phone img {
    height: 1.6rem;
}

.container {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
    padding: 1em 2em;
    z-index: 1
}

.content {
    max-width: 900px;
    margin: 0 auto
}

.website-info {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1em;
    font-size: .8em;
    text-align: center;
}

.website-info p {
    margin: 0;
    padding: 0;
    font-size: 12px
}




@media screen and (min-width: 1000px) and (max-width: 1300px) {
    body,
    html {
        font-size: 15px;
    }
}

@media screen and (min-width: 800px) and (max-width: 999px) {
    body,
    html {
        font-size: 12px;
    }

    .illustration .contact-info {
        bottom: 7vh;
    }

    .contact-info a {
        display: inline-block;
        padding: .5em 1em;
        border: 3px dashed transparent;
        border-radius: .75em;
    }
}


@media screen and (min-width: 250px) and (max-width: 799px) {
    .page {
        height: calc(100% - 2rem);
        padding: 1rem;
    }

    .contact-info {
        position: relative !important;
        left: 0 !important;
        bottom: 0 !important;
    }
}
