*{
    margin: 0;
    padding: 0;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: black;
}

.container{
    max-width: 1000px;
    margin: auto;
}
header{
    background-color: #48C5CE;
    text-align: center;
    color: white;
    padding: 10px;
}

.title{
    font-size: 26px;

}

section{
    padding:20px;
    background-image: url('../images/people.jpg');
    background-size: cover;
    overflow: hidden;
   
}

.formContainer{
    max-width: 230px;
    background-color: #FFFFFFBB;
    padding: 20px;
    float: right;
}

h2{
    font-size: 16px;
}

.marginBottom{
    margin-bottom: 15px;
}

input, select{
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border: none;
    margin-bottom: 10px;
}

input[type="submit"]{
    color:white;
    background-color: #48C5CE; 
    font-weight: bold;
}

select{
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;

  background-image: url('../images/arrow.jpg');
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}

footer{
    background-color: #202121;
    padding: 40px;
    text-align: center;
}

.picture{
    width: 160px;
}

.description{
    display: inline-block;
    text-align: left;
    color:white;
    max-width: 40%;
    margin-left: 40px;
}

.description p, .description h3{
    margin-bottom: 20px;
}

.description h3{
    font-size: 24px;
}

@media screen and (max-width: 800px) {
    .formContainer{
        float: none;
        margin: auto;
        max-width: 70%
        
    }

    .description{
        display: inline;
        text-align: center;
    }

    .picture {
        display: inline;
        transform: translateX(15%);
    }
}