body{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}
.flex-container{
  display: flex;
  width: 90%;
  margin: auto;
  flex-direction: column;
  align-items: center;
}
.flex-container h1{
  font-size: 3em;
}
.flex-container p{
  font-size: 1.5em;
}

form {
    display: flex;
    flex-direction: column;
    background-color: #f2f2f2;
    padding: 20px;
    border-radius: 10px;
  }
  
  label {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1em;
  }
  
  input{
    background-color: #d4d4d4;
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2em;
    width: 48%;
  }
   select{
    background-color: #555755;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2em;
    width: 50%;
  }
  option{
    background-color: #d4d4d4;
    font-weight: bold;
    color: #000;
    font-size: 1em;
    
  }
  button{
    width: 50%;
    height: 50px;
    font-size: 1.5em;
  }
  
  button:hover {
    background-color: #45a049;
  }
  
  img{
    width: 70%;
    height: auto;
    text-align: center;
    
  }

  .link{
    background-color: #45a049;
    padding: 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
  }
  .link:hover{
    background-color: #555755;
  }
  
  