/*=================================================*/
/*GENERAL STYLES
/*=================================================*/
* ,
* ::before,
* ::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background: #FFCA00;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: #FFCA00;
}

a {
    color: #fff;
    text-decoration: none;
}

a, btn, button {
    transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
}

a:hover, a:focus {
    color: #ededed;
}


h1 {
    font-size: 64px !important;
    padding: 15px;
}

p {
    color: #FFCA00;
    padding: 25px;
}

img {
    max-width: 100%;
}

hr {
    border: 0;
    height: 1px;
    border-top: 1px solid #fff;
    margin: 20px 0;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%)
}

.bgimg {
    background-image: url('../images/background/bg-1.jpg');
    min-height: 100%;
    background-position: center;
    background-size: cover;
}
