html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: white;
    height: 100%;
}

body {
    /*background-image: url(../images/bg-color.gif);*/
    /*background-repeat: no-repeat;*/
    /*background-position: center center;*/
    /*background-size: cover;*/
}
img {
    /* width: inherit; */
    height: inherit;
}
#wrap{
    width: 100%;
    height: 100vh;
}
#wrap .bg_presentacion{
    width: 100%;
    height:50vh;
    padding: 0;
}
#wrap .color_1{
    background-color: #01D4CD;
}
#wrap .color_2{
    background-color: #FE4272;
}
#wrap .color_3{
    background-color: #C9E7A9;
}
#wrap .color_4{
    background-color: #FADB7E;
}
#wrap .bg_absoluto{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    width: 100%;
}

.canvas {
    display: flex;
    height: inherit;
    justify-content: center;
	align-items: center;
	
}

.box {
    width: 560px;
    text-align: center;
    background: #6E0ACB;
	padding: 20px;
}

.box img {
    /* width: 180px; */
}



/*********************
* FONTS
**********************/

h1{
	font-size: 3em;
	line-height: 1em;
	margin: 10px 5px;

}
h2 {

}
a {
text-decoration: none;
}
a.link {
	display: inline-flex;
    color: #fff;
    border: 1px solid #fff;
    padding: 6px 15px 7px;
    margin-top: 11px;
    position: relative;
    z-index: 0;
}
a.link:hover{
	/*background: #a1cc47;*/
	color: white;
    text-decoration: none;
    border: 1px solid #a1cc47;
}
a.link:after{
    content: '';
    background: #a1cc47;
    width: 0;
    height: 40px;
    position: absolute;
    top: -1px;
    left: 0;
    z-index: -1;
    color: #fff;
    transition: 0.2s linear;
}
a.link:hover:after{
    width: 100%;
}

@media (max-width: 767px){
    .box{
        width: auto;
    }
    #wrap .bg_absoluto{
        width: 80%;
    }
    #wrap .bg_absoluto h1{
        font-size: 20px;
    }
    #wrap .bg_absoluto p{
        font-size: 15px;
    }
    #wrap .bg_absoluto a{
        font-size: 13px;
    }
}

/********* error 404 *************/
#notfound {
    position: relative;
    height: 100vh;
    background: #030005;
}

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

.notfound {
    max-width: 767px;
    width: 100%;
    line-height: 1.4;
    text-align: center;
}

.notfound .notfound-404 {
    position: relative;
    height: 180px;
    margin-bottom: 20px;
    z-index: -1;
}

.notfound .notfound-404 h1 {
    font-family: 'Montserrat', sans-serif;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50% , -50%);
    -ms-transform: translate(-50% , -50%);
    transform: translate(-50% , -50%);
    font-size: 224px;
    font-weight: 900;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: -12px;
    color: #030005;
    text-transform: uppercase;
    text-shadow: -1px -1px 0px #8400ff, 1px 1px 0px #ff005a;
    letter-spacing: -20px;
}


.notfound .notfound-404 h2 {
    font-family: 'Montserrat', sans-serif;
    position: absolute;
    left: 0;
    right: 0;
    top: 110px;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0px 2px 0px #8400ff;
    letter-spacing: 13px;
    margin: 0;
}

.notfound a {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    text-transform: uppercase;
    color: #ff005a;
    text-decoration: none;
    border: 2px solid;
    background: transparent;
    padding: 10px 40px;
    font-size: 14px;
    font-weight: 700;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.notfound a:hover {
    color: #8400ff;
}

@media only screen and (max-width: 767px) {
    .notfound .notfound-404 h2 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 480px) {
    .notfound .notfound-404 h1 {
        font-size: 182px;
    }
}