HTML { overflow-x : hidden ;width: 100%;max-width: 100%;height: auto; }
/* BODY */
body {
    /*overflow-x: hidden;*/
    /*width: 100%;*/
     /*max-width: 100%; */
     /*height: auto;*/
    position: relative;
    margin:0;
    padding:0px;
    background-image: linear-gradient(#ffffff2b,#ffffff2b),url("../images/texture-camouflage.gif");
}
* {
 font-family: 'Comfortaa', cursive;
}

/* HEADER */
.header {
    width: 100%;
    height: 100px;
}
.header .right {
    position:absolute;
    left: 0;
    width: 0;
    height: 0;
    border-right: 1100px solid transparent;
    border-top: 160px solid rgba(83, 80, 80, 0.7);
    overflow: hidden;
}
.header .left {
    position:absolute;
    right: 0;
    width: 0;
    height: 0;
    border-left: 1100px solid transparent;
    border-top: 160px solid rgba(83, 80, 80, 0.93);
    overflow: hidden;
}
.header .subscribe-button {
    z-index: 1;
    position: absolute;
    background-color: #CDBA86;
    border: none;
    color: white;
    padding: 17px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 25px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 50px;
    margin-top: 30px;
    margin-left: 50px;
}
.header .subscribe-button:hover{
    background-color: #a5956a;
}
.header .login-button {
    z-index: 1;
    position: absolute;
    background-color: #CDBA86;
    border: none;
    color: white;
    padding: 17px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 25px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 50px;
    margin-top: 30px;
    right: 50px;
}
.header .login-button:hover{
    background-color: #a5956a;
}
.header .logo {
    position: absolute;
    margin-top: 30px;
    width: 100%;
    text-align: center;
}
.header .logo img {
    position:relative;
    width: 120px;
}
.header .login a {
    position: absolute;
    text-decoration: none;
    font-size: 20px;
    right: 15px;
    top: 4px;
    z-index: 1;
    color: #DCDCDC;
}

/* CONTENT */
.content {
    width: 100%;
    margin-top: 100px;
    text-align: center;
    color: #FFFFFF;
}
.content h2 {
    font-weight: lighter;
}
.content h1 {
    font-weight: bold;
}
.content .spacer {
    margin-top: 100px;
}

/* FOOTER */
.footer {
    position: absolute;
    width: 100%;
    height: 160px;
    text-align: center;
}
.footer .right {
    position:absolute;
    left: 0;
    width: 0;
    height: 0;
    border-right: 1100px solid transparent;
    border-bottom: 160px solid rgba(83, 80, 80, 0.7);
    overflow: hidden;
}
.footer .left {
    position:absolute;
    right: 0;
    width: 0;
    height: 0;
    border-left: 1100px solid transparent;
    border-bottom: 160px solid rgba(83, 80, 80, 0.93);
    overflow: hidden;
}
.footer .copyright p {
    position: absolute;
    text-decoration: none;
    font-size: 20px;
    width: 100%;
    bottom: -10px;
    z-index: 1;
    color: #DCDCDC;
}
.footer .copyright a {
    text-decoration: none;
    color: #DCDCDC;
}

