body {
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
    background: #c94e4b;
}

strong {
    font-weight: 700;
    font-style: italic;
}

section {
    height: 100vh;
    padding: 0;
    width: 100%;
    background-size: cover;
    background-color: #c94e4b;
    background-blend-mode: multiply;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    opacity: 0;
}

section.fade-in {
    opacity: 1;
}

section * {
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    opacity: 0;
}

section.fade-in * {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    opacity: 1;
}

#main {
    max-width: 60%;
    margin: 0 auto;
}

#main img {
    margin-bottom: 30px;
}

#logo {
    max-width: 270px;
}

#bottom {
    margin-top: 40px;
    width: 100%;
    text-align: center;
}



#bottom a {
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    opacity: .3;
}

#bottom a:hover {
    opacity: .8;
}

#bottom img {
    max-height: 40px;
    display: inline-block;
    margin: 0 40px;
}

#bottom span {
    font-size: 12px;
    font-weight: 600;
    color: #d98381;
    display: block;
    opacity: .8;
    margin-bottom: 40px;
    letter-spacing: 4px;
}

a {
    font-weight: 600;
    color: #d98381;
    font-style: italic;
    text-decoration: none;
}

p {
    margin: 0;
    color: #d98381;
    font-size: 24px;
    font-weight: 600;
    line-height: 40px;
}

h1 {
    font-size: 64px;
    line-height: 64px;
    margin-bottom: 15px;
    color: #d98381;
    letter-spacing: 1px;
}

@media all and (max-width: 1200px) {
    #main {
        max-width: 65%;
    }
    #bottom img {
        max-height: 30px;
        margin: 0 24px;
    }
}

@media all and (max-width: 767px) {
    #logo {
        max-width: 160px;
    }
    #main {
        max-width: 90%;
    }
    #main img {
        margin-bottom: 32px;
    }
    p {
        font-size: 16px;
        line-height: 32px;
    }
    br {
        display: none;
    }
    #bottom {
        margin-top: 40px;
    }
    #bottom img {
        max-height: 20px;
        margin: 0 16px;
    }
}