body {
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
}

.background-full {
    background: url('../images/girl-background-web.png') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.contact-container {
    overflow: hidden;
    padding: 15px 0;
    width: 350px;
    height: 200px;
    position: fixed;
    top: 45%;
    right: -280px;
    z-index: 999;
    cursor: pointer;
    margin-top: -125px;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-border-top-left-radius: 35px;
    -webkit-border-bottom-left-radius: 35px;
    -moz-border-radius-topleft: 35px;
    -moz-border-radius-bottomleft: 35px;
    border-top-left-radius: 35px;
    border-bottom-left-radius: 35px;
    border-style: solid;
    border-width: 2px;
    border-color: #e94a43;
    transition-property: right;
    transition-duration: 0.1s;
    transition-timing-function: linear;
}

.contact-container:hover {
    right: -10px;
}

.contact-text {
    display: none;
    color: #e94a43;
    margin-left: 25px;
    margin-top: 24px;
}

.title {
    margin-bottom: 15px;
    font-weight: bold;
    font-size: larger;
    text-decoration: underline;
}

#contact-button {
    display: inline-block;
    line-height: 166px;
    vertical-align: top;
    color: #e94a43;
    font-size: 20px;
    letter-spacing: 2px;
    transform: rotate(270deg);
    -ms-transform:rotate(270deg);
    -moz-transform:rotate(270deg);
    -webkit-transform:rotate(270deg);
    -o-transform:rotate(270deg);
    margin-left: -55px;

}

.content-text {
    height: 100%;
    height: 250px;
    font-size: 20px;
    line-height: 25px;
    padding-top: 40px;
}

@media screen and (max-width: 600px) {
    .content-text {
        text-shadow: 2px 2px 5px black;
    }
}

.logo-container {
    position: absolute;
    top: 2%;
    right: 2%;
}

.footer {
    background: url('../images/red_footer-web.png');
    background-size: 100% 100%;
    position: absolute;
    bottom: 0px;
    right: 0;
    left: 0;
    margin: auto;
}