html{
    font-family: 'aller', 'aller-display', 'raleway','arial', 'helvetica', sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Basic Definitions */

body {
    min-width: 365px;
    font-size: 18px;
}

h1{
    font-family: 'aller', sans-serif;
    font-weight: 300;
    font-style: normal;
    text-transform: lowercase;
    font-size: 4.5rem;
    color: white;
    line-height: 5rem;
    margin:1vh 0 1vh 0;
}

h1 strong{
    font-weight: 700;
    color:#C69C6D;
}

h2{
    color:white;
    font-family: 'aller',Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
}

p{
    font-family: 'raleway', Arial, Helvetica, sans-serif;
    line-height:3rem;
    font-size: 1.5rem;
    color: white;
    font-weight: 200;
    letter-spacing: 0.15rem;
}



/* Styling the Body */
.bg-image{
    background-image: url('ks-bgimg2.jpg');
    background-color: #C69C6D;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}


.bg-image-mobile{
    display: none;
}

.content-block{
    margin-left:15vw;
    margin-right:15vw;
    margin-top:15vh;
    margin-bottom:15vh;
    background-color: rgba(0,0,0,0.85);
    padding: 5%;
    border-radius: 25px;
}

.content-container{
    margin-bottom:60px;
}

.kickstarter-button{
    background-color: #05ce78;
    border-radius: 15px;
    padding:20px;
    margin: 4.5vh 0 4.5vh 0;
    color: white;
    text-decoration: unset;
    transition: 0.3s;
    font-size: 1.5rem;
}

.kickstarter-button:hover{
    background-color: #12915a;
    transition: 0.3s;
}

.kickstarter-button img{
    position: relative;
    height: 25px;
    width: auto;
    top: 3px;
}

.social{
    color: white;
    text-decoration: unset;
    font-family: 'aller',Arial, Helvetica, sans-serif;
    font-weight: 700;
    margin-right: 5%;
    font-size: 1.2rem;
}

.social:hover{
    color: #C69C6D;
    transition: 0.3s;
}

.social img{
    position: relative;
    height: 30px;
    width:auto;
    top: 8px;
    margin-right: 5px;
}

/* Styling the Footer */
footer{
    position:fixed;
    bottom: 5px;
    left: 15px;
    background-color: black;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 15px;
}
.footer-content a{
    color: white;
    font-weight: 700;
    text-decoration: none;
}

.footer-content a:hover{
    color: #e7cfb3;
    transition: 0.3s;
}


/* Breakpoints */

@media (min-width:1800px){
    .content-block{
        margin-left:25vw;
        margin-right: 25vw;
        margin-top: 20vh;
    }
}


@media (max-width:1080px){
    body{
        font-size: 12px;
    }

    .content-block{
        margin-left:1vw;
        margin-right: 1vw;
        margin-top: 20vh;
    }

}

@media (max-width:600px){
    body{
        font-size: 10px;
        margin: 0;
    }

    /* set BG image to solid and make bg mobile appear */

    .bg-image{
        background: black !important;
    }

    .bg-image-mobile{
        display:block;
    }

    .bg-image-mobile img{
        max-width: 100%;
        height: auto;
        border-radius: 25px;
    }

    /* specific things */
    h1{
        font-size: 3.5rem;
        line-height: 3.8rem;
    }

    p{
        font-size: 1.25rem;
    }
    .content-block{
        margin-top: 5px;
    }

    .kickstarter-button img{
        height:12px;
        top: 0px;
    }

    .social img{
        height: 15px;
        top: 4px;
    }

    .social{
        margin-right: 5px;
    }
}
