body{
    margin: 0;
    padding: 0;
    background-image: url('./photo-of-people.jpg');
    /* background-position: center; */
    background-size: cover;
    background-repeat: no-repeat;
}

.container{
    width: 50%;
    margin: auto;
    /* opacity: 0.5; */
}

.form-contact{
    background-color: rgba(200, 200 , 200, 0.5);
    border-radius: 10px;
    padding: 50px;
    margin-top: 20vh;
    text-align: center;
    position: relative;
}

img{
    position: absolute;
    border-radius: 50%;
    transform: translate(-50%, -100%);
}

h1{
    color: green;
    font-family: monospace;
    font-size: 40px;
    font-weight: 800;
}

input, textarea{
    background-color: rgba(250, 250, 250, 0.2);
    padding: 5px;
    color: green;
    border: none;
    border-style: solid;
    border-width: 3px;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: rgba(0, 0, blue, 0.5);
    border-color: royalblue;
    text-align: center;
    font-size: 20px;
    width: 80%;
    margin: auto;
    margin: 20px;
    border-radius: 5px;
}

input:focus, textarea:focus{
    border-color: green;
}

input{
    height: 4vh;
}

button{
    width: 50%;
    margin: auto;
    background-color: green;
    color: white;
    font-size: 20px;
    padding: 10px;
    border: none;
    border-radius: 10px;
}

button:hover{
    background-color: rgb(10, 235, 28);
}

@media(max-width: 950px){
    .container{
        width: 80%;
    }
}

@media(max-width: 500px){
    .container{
        width: 90%;
    }
    input, textarea{
        width: 70%;
    }
    .form-contact{
        padding: 10px;
        margin-bottom: 20px;
    }
    button{
        margin-bottom: 30px;
    }
    img{
        transform: translate(-50%, -50%);
    }

    
}