body{
    background-color: rgb(139, 206, 235);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
header{
    display: flex;
    justify-content: space-around;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem;
    text-align: center;
    border-radius: 1rem;
    max-width: 90vw;
    justify-self: center;
    gap: 2rem;
     margin-bottom: 1rem;

    a{
        color: #595757;
        text-decoration: none;
    }
    a:hover{
        color: #000;
    }
}
h1,p{
    text-align: center;
    color: rgb(9, 0, 0);
}
main{
    background-color: rgb(139, 206, 235);
    display: flex;
    justify-self: center;
    flex-direction: column;
    width: 80vw;
}
form{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #fff;
    align-items: center;
}
label{
    color: #595757;
}
input{
    padding: 0.5rem;
    border-radius: 0.5rem;
    border-style: none;
    background-color: rgb(244, 253, 253);
}
.btn{
    background-color: blue;
    color: #fff;
    align-self: center;
    width: 10rem;
    padding: 1rem;
    border-style: none;
}
.btn:hover{
    background-color: rgb(3, 3, 188);
}
textarea{
    border-radius: 0.2rem;
    max-width: 100%;
}
.userDetails, .messageDesc{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

@media screen and (min-width: 760px) {
    form{
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .userDetails, .messageDesc{
        width: 40%;
    }
    h1{
        text-align: left;
    }    
    .btn{
        width: 15rem;
    }
}