@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

body{
    background-color: rgb(34, 34, 34);
    color: white;
    font-family: 'Montserrat', sans-serif;
    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(201, 14, 154);
    transition: 0.3s all;
}

#inscreva-se-btn{
    border: 2px solid rgb(201, 14, 154);
    padding: 10px; 
    border-radius: 20px;   
}

#inscreva-se-btn:hover{
    background-color: rgb(201, 14, 154);
    color: white;
}

h1{
    font-weight: 200;
}

main{
    display: flex;
    flex-direction: row;
    margin-top: 50px;
}

h2{
    font-size: 50px;
    line-height: 10px;
}

span{
    color: rgb(201, 14, 154);
    background: linear-gradient(to left, 
    #F761A1, #8C1BAB);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;  
      
}

p{
    line-height: 20px;
    max-width: 500px;
}

img{
    width: 600px;
    margin-left: 15%;
}

form{
    display: flex;
    flex-direction: column;
    width: 60%;
}

form [type="submit"]{
    height: 50px;
    width:50%;
    background-color: rgb(201, 14, 154);
    color: white;
    font-weight: bold;
    
}

form [type="submit"]:hover{
    cursor: pointer;
}

input{
    margin-top: 20px;
    height: 20px;
    padding: 15px;
    border-radius: 20px;
    border: none;
    font-size: 15px;
}

@media screen and (max-width: 900px){
    header{
        flex-direction: column;
    }
    main{
        flex-direction: column;
    }
    h2{
        font-size: 28px;
        margin-left: 15px;
    }
    p{
        margin-left: 15px;
    }
    form{
        margin: 0 auto;
        width: 100%;
    }
    input{
        align-self: center;
    }
         
    img{
        display: none;
    }

    ul{
        text-align: center;
        margin-right: 30px;
    }
}

