* {
    margin: 0 auto;
}

html,
body {
    height: 100%;
    overflow: hidden;
}

body {
    background: #d9b35c url('images/bg.png') repeat;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1;
    color: #fff;
}

h1,
h2 {
    margin: 0 auto;
    color: #fff;
    padding: 0 20px;
}

h1 {
    font-weight: 700;
    font-size: 4rem;
}

h2 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 15px;
}

a {
    color: #fff;
}

.o-wrapper {
    text-align: center;
    max-width: 440px;
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-internal {
    position: relative;
}

.c-person {
    height: 500px;
    width: auto;
    margin: 0 auto;
    display: block;
}

.c-cta {
    background-color: #333;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    line-height: 1.3;
    transition: all .2s ease-in-out;
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: 700;
    color: #fff;
}

.c-cta:hover {
    transform: scale(1.1);
}

.c-text {
    padding: 20px 0 30px;
    position: relative;
    width: 100vw;
    background-color:rgba(209, 172, 82, 0.6);
}

@media screen and (max-height: 650px){
    .c-person {
        height: 400px;
    }
}

@media screen and (max-height: 560px){
    .c-person {
        height: 300px;
    }
}

@media screen and (max-width: 480px){
    .o-wrapper {
        align-items: flex-end;
    }
    .c-person {
        height: auto;
        width: 90%;
        margin-bottom: 135px;
    }
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    .c-cta {
        height: 80px;
        width: 80px;
        top: 10px;
        right: 10px;
    }
    .c-text {
        position: fixed;
        bottom: 0;
        left: 0;
        background-color:rgba(209, 172, 82, 1);
    }
}

@media screen and (max-width: 350px){
    h1 {
        line-height: 1.2;
        font-size: 2.6rem;
    }
}