@import url(reset.css);

@import url('https://fonts.googleapis.com/css?family=Dosis:200,300,400,500,600,700,800&display=swap');

body {
	cursor:default;
    font-family: 'Dosis', sans-serif;
    font-size: 1.5vh;
    color: #333333;
    font-weight: 500;
}

.container{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

main{
    background-image: url(../img/header.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 90vh;
}

.main__fumaca{
    background-image: url(../img/fumaca.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
}

.main{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: calc(100% - 10vh);
}

.main__titulo{
    color: white;
    font-size: 6vh;
    font-weight: 800;
    text-align: center;
    line-height: 120%;
}

.main__texto{
    color: white;
    margin-top: 3vh;
    font-size: 1.5vh;
    text-transform: uppercase;
}

footer{
    width: 100%;
    height: 10vh;
    background-color: white;
    position: relative;
    padding: 3vh 0;
    box-sizing: border-box;
}

.footer__img{
    background-image: url(../img/codepro.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
}