body{
    background-color:rgb(34, 34, 34) ;
    color: white;
    font-family: poppinsregular;
    max-width: 1200px;
    margin: 0 auto ;
    padding: 15px;
}
header{
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items: center;
}

#title{
    flex-direction: column;
    line-height: 10px;
}

li{
display: inline-block;
margin: 20px;

}

a{
    color: white;
}

a:hover{
    color: rgb(220,20,60);
    transition: 0s.3s all;
}

#inscreva-se-btn{
    border: 2px solid rgb(220, 20, 60);
    padding: 10px;
    border-radius: 15px;
}

#inscreva-se-btn:hover{
    background-color: rgb(220, 20, 60);
    color: white;
}
    

h1{
    font-weight: 200px;
    line-height: 10px;
}

main{
    display: flex;
    flex-direction: row;
    margin-top: 50px;
}

h2{
    font-size: 56px;
    line-height: 10px;
    font-family: poppinmedium;
}

span{
    color: rgb(220, 20, 60);
}

p{
    line-height: 20px;
    max-width: 500px;
    font-family: poppinslight;
}

img{
    width: 580px;
}

form{
    display: flex;
    flex-direction: column;
    width: 70%;
}

form [type="submit"]{
    height: 50px;
    padding: 0 25px;
    background-color: rgb(220, 20, 60);
    color: white;
    font-weight: bold;
}

form [type="submit"]:hover{
   cursor: pointer;
}

input{
    margin-top: 20px;
    height: 20px;
    padding: 15px;
    border-radius: 20px;
    font-size: 15px;
    
}

footer{
    background-color: rgb(34, 34, 34); /* fundo preto */
    color: #fff; /* texto branco */
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    position: fixed; /* fica fixo na parte de baixo */
    bottom: 0;
    left: 0;
    width: 100%;

}
