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

body{
	background: #efeded;
    padding: 30px 0;
    font-family: 'Lato', sans-serif;
    color: #00ad98;
}
.wrapper-container{
	text-align: center;
	display: inline-flex;
	width: 100%;
    height: 100%;
}
.content{
	margin: auto auto;
	width: 100%;
}

.content img{
	display: block;
	margin: 0 auto;
}

.content h1{
	text-transform: uppercase;
	font-size: 38px;
	line-height: 1.1;
	margin-top: 40px;
	margin-bottom: 10px;
}

.content h1 span{
	font-size: 54px;
	font-weight: 900;
}

.content p{
	font-size: 19px;
}

.content a{
	background: #f26522;
    color: #fff;
    text-decoration: none;
    font-size: 34px;
    display: block;
    width: fit-content;
    margin: 35px auto 45px;
    font-weight: 700;
    padding: 20px 60px;
    border-radius: 12px;
    line-height: 1;
    transition: all .5s;
    cursor: pointer;
}

.content a:hover{
	background: #c54e16;
}

.content a span{
	font-size: 19px;
	font-weight: 400;
}

img{
	max-width: 90%;
}

@media(max-width: 500px){
	.content h1{font-size: 25px;}
	.content h1 span{font-size: 35px;}
	.content a {
	    font-size: 23px;
	    padding: 20px 45px;
	}
}

@media(min-width: 1100px) and (max-width: 1550px){
	.grupo, .topo{width: 28%;}
	.content h1{font-size: 30px;}
	.content h1 span{font-size: 45px;}
	.content a {
	    background: #f26522;
	    color: #fff;
	    text-decoration: none;
	    font-size: 25px;
	    display: block;
	    width: fit-content;
	    margin: 10px auto 45px;
	    font-weight: 700;
	    padding: 10px 60px;
	    border-radius: 12px;
	    line-height: 1;
	    transition: all .5s;
	    cursor: pointer;
	}
	body{padding: 0; height: 100%; overflow: hidden;}
}