body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: arial, verdana;
    background-image: url("../assets/fundo.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    background-color: #00112ee7;
}

img{
    width: 40vw;
}

@media (max-width: 999px) {
    img{
        width: 60vw;
    }
    iframe{
        width: 340px;
        height: 600px;
    }
}

h1, p{
    color: #fff;
}

span{
    color: #ffa621;
}

a{
    text-decoration: none;
    font-weight: bold;
    background-color: #ff0000;
    color: #fff;
    padding: 20px;
    border-radius: 35px;
    border: 2px solid #000;
    font-size: 20px;
    -webkit-text-stroke: 1px #000;
    transition: 0.2s;
}

a:hover{
    background-color: #ff4040;
    scale: 1.03;
}

p{
    font-size: 40px;
}