html, body {
    padding: 0;
    margin: 0;
}
h1.website-coming-soon {
    font-size: 33px;
    font-weight: normal;
    padding-top: 20px;
    padding-left: 20px;
}

.background-image {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 100%;
    z-index: 0;
}

.right-banner {
    position: absolute;
    right: 0;
    top: 0;
    width: 35px;
    background-color: #ff3300;
    height: 100%;
    z-index: 100;
}

.letter-a-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 100%;
    z-index: 1;
}

.letter-a-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    overflow: hidden;
    height: 100%;
}

.letter-a-wrap img {
    width: 1500px;
    position: relative;
    left: -91px;
    top: -170px;
}

.body {
    background: #2e2e2e;
    width: 810px;
    position: relative;
    min-height: 953px;
    overflow: hidden;
    height: 100%;
}

.content {
    background-color: rgba(64, 64, 64, .5);
    z-index: 100;
    position: absolute;
    width: calc(100% - 40px);
    top: 20px;
    left: 20px;
    height: calc(100% - 40px);
}

.content-wrap {
    padding-top: 10px;
    padding-left: 20px;
    height: 100px;
    bottom: 0;
    width: calc(100% - 200px);
    /*background: purple;*/
    float: left;
}

.contact-details {
    padding-bottom: 20px;
    padding-left: 20px;
    height: 100px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.logo-wrap {
    float: left;
    width: 120px;
    border-right: 1px solid rgba(204, 204, 204, 50%);
    padding-right: 10px;
}

h1, a, p, td {
    color: white;
    font-family: "poppins";
}

h1 {
    font-size: 15px;
    line-height: 1;
    margin: 0;
}

td {
    font-size: 13px;
}

table {
    margin-top: 10px;
    margin-left: -3px;
}

a {
    text-decoration: none;
}

td {
    font-size: 13px;
    padding: 0;
    margin: 0;
    line-height: 1.4;
}

body {
    display: flex;
    justify-content: center;
    background: #2e2e2e;
    align-items: center;
}

.contact-details-mobile {
    display: none;
}

.contact-details-desktop {
    display: block;
}
@media screen and (max-width: 992px) {
    .body {
        width: 100%;
        position: fixed;
        overflow: hidden;
        height: 100%;
        top: 0;
    }
    .background-image {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/* On screens that are 600px or less, set the background color to olive */
@media screen and (max-width: 600px) {
    body {
        width: 100%;
        position: fixed;
        overflow: hidden;
        height: 100%;
        top: 0;
    }
    .background-image {
        top: 0;
        left: -210px;
        max-width: none;
        height: 100%;
        width: auto;
        bottom: auto;
    }

    .logo-wrap {
        float: left;
        width: 80px;
        border-right: 1px solid rgba(204, 204, 204, 50%);
        padding-right: 10px;
    }


    .contact-details-desktop {
        display: none;
    }

    .contact-details-mobile {
        display: block;
    }

    .contact-details {
        height: 180px;
        bottom: 0;
        /*padding-bottom: 80px;*/
        padding-bottom: 10px;
        padding-left: 10px;
    }

    .content-wrap {
        width: calc(100% - 135px);
        padding-left: 15px;
    }
    .letter-a-wrap img {
        left: -291px;
    }
    .content {
        width: calc(100% - 40px);
        height: calc(100% - 40px);
        top: 21px;
        position: fixed;
    }
    h1.website-coming-soon {
        font-size: 25px;
    }
}