body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    background-image: url('/images/bg.jpg');
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-basis: 3;
}

img {
    max-width: 80%;
}

.wrapper {
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-grow: 2;
    width: 100%;
    max-width: 1300px;
}

.wrapper h2 {
    font-weight: 400;
    color: #fed391;
    font-size: 52px;
}

.contact {
    flex-grow: 1;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.contact-inner {
    display: flex;
    flex-grow: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.contact span {
    color: #fed391;
    font-size: 34px;
}

.contact a {
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: #0e314f;
    background-color: #fed391;
    font-size: 34px;
    flex-grow: 0;
    transition: background-color .25s ease-in-out;
}

.contact a:hover {
    background-color: #d5b078;
}

@media(max-width: 1110px) {
    body {
        flex-basis: 2;
    }
    .wrapper {
        flex-direction: column;
        flex-grow: 1;
    }
    .wrapper .logo {
        text-align: center;
    }
    .contact {
        flex-grow: 1;
    }
}

@media(max-width: 740px) {
    .contact-inner {
        flex-direction: column;
    }
    .contact-inner a {
        margin-top: 40px;
    }
}

@media(max-width: 600px) {
    .wrapper h2 {
        font-size: 32px;
    }
    .contact-inner span{
        font-size: 28px;
    }
    .contact-inner a {
        font-size: 28px;
    }
}