html, 
body {
    height: 100%;
}
body{
    background:#cc0000;
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    margin: 0;
    letter-spacing: 3px;
}
.header-toggle {
    margin-top: 30px;
    margin-right: 30px;
    float: right;
}
#menu-toggle {
    background-color: rgb(0,0,0);
    color: rgba(248, 250, 255, 0.99);
    -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-border-top-left-radius: 50%;
    -moz-border-top-left-radius: 50%;
    border-top-left-radius: 50%;
    -webkit-border-top-right-radius: 50%;
    -moz-border-top-right-radius: 50%;
    border-top-right-radius: 50%;
    -webkit-border-bottom-left-radius: 50%;
    -moz-border-bottom-left-radius: 50%;
    border-bottom-left-radius: 50%;
    -webkit-border-bottom-right-radius: 50%;
    -moz-border-bottom-right-radius: 50%;
    border-bottom-right-radius: 50%;
    background-clip: padding-box;
    position: relative;
}
.toggle {
    height: 50px;
    width: 50px;
    text-align: center;
}
#menu-toggle i {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
    -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: block;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 26px;
    position: relative;
    line-height: 50px;
}

.text {
    width: 100%;
    font-size: 16px;
    line-height: 18px;
    text-decoration: none;
    color: #ffffff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}
h1{
    font-size: 70px;
    line-height: 80px;
    width: 80%;
    margin: 60px auto 0;
}
h2{
    font-size: 32px;
    line-height: 40px;
    width: 80%;
    margin: 60px auto 0;
}
h3{
    font-size: 40px;
    line-height: 40px;
    width: 70%;
    margin: 30px auto 0;
    color:#9d2827;
}

@media only screen and (max-width: 1024px) {
    h2{
        font-size: 30px;
        line-height: 30px;
        width: 95%;
        margin: 0 auto;
    }
    h3{
        font-size: 24px;
        line-height: 24px;
        width: 90%;
        margin: 15px auto 0;
        color:#9d2827;
    }
}