body{
    background-color: rgb(34, 34, 34);
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}
header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
#titulo{
    flex-direction: column;
    line-height: 10px;
}

h1{
    font-weight: 200px;
}

main{
    display: flex;
    flex-direction: row;
    margin-top: 70px;
}

li{
    display: inline-block;
    margin: 20px;
}

a{
    color: white;
    text-decoration: none;
    list-style-type: none;
}

a:hover{
    color: rgba(0, 183, 255, 0.842);
    transition: 0.3s all;
}

h2, h3{
    font-size: 55px;
}

span{
    color: rgba(0, 183, 255, 0.842);
}

p{
    line-height: 20px;
    max-width: 500px;
}

#text{
    margin: 0 auto;
}

img{
    width: 560px;
    position: relative;
    bottom: 70px;
}

#contato-btn{
    border: 2px solid rgba(0, 183, 255, 0.842);
    padding: 10px;
    border-radius: 20px;
}

#contato-btn:hover{
    background-color: rgba(0, 183, 255, 0.842)  ;
    color: rgb(255, 255, 255);
}

form{
    display: flex;
    flex-direction: column;
    width: 50%;
}

form [type="submit"]{
    height: 50px;
    width: 50%;
    background-color:  rgba(0, 183, 255, 0.842);
    color: white;
    font-weight: bold;
}

input{
    margin-top: 20px;
    padding: 20px;
    border-radius: 20px;
    border: none;
    font-size: 15px;
}

#compre{
    border: 2px solid rgba(0, 183, 255, 0.842);
    padding: 15px;
    border-radius: 20px;
}

#compre:hover{
    background-color: rgba(0, 183, 255, 0.842)  ;
    color: rgb(255, 255, 255);
}

section{
    text-align: center;
    padding: 50px;
    margin: 0 auto;
    font-size: 20px;
}

@media screen and (max-width: 760px){
    main{
        flex-direction: column;
    }

    h2{
        font-size: 45px;
    }

    img{
        display: none;
    }

    

}

