/*

#contact-form{
  
    min-height: 50%; 
	
     
}


form{
   
   min-height:30em; 
	
    border-radius: 12.5px; 

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
   
    border: solid thin black; 
}

input{
   width: 80%;
   height: 2em; 
    margin-top: 2em; 
    border-radius: 12.5px; 
    padding-left: 1.5vw; 
	
}

textarea{
    width: 80%; 
    min-height: 6em;
    border-radius: 12.5px; 
    margin-top: 2em;
    padding-left: 1.5vw; 
   padding-top: 2.5vh;

}

form button{
  margin: 2em 0;
    border-radius: 12.5px; 
    width: 30vw;
    height: 2em; 
  

}

#persuetext{
    width: 100%;
    height: 20%; ; 
   padding: 1em 0;
}
@media screen and (max-width: 768px) {
    #contact-form{
  
        height: 40em;      
		
    }
	
	form{
		
	padding-top: 2em; 
	height: 40em; }

    input{
        height: 5em
    }

    textarea{
        height: 20em; 
    }

    form button{
        height: 4em; 
        width: 80%; 
    }
    
}

*/



.container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

h1 {
  font-size: 36px;
  margin-bottom: 30px;
}

form {
  display: inline-block;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

textarea {
  height: 150px;
	background: yellow; 
}

button[type="submit"] {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #3e8e41;
}

#success-message {
  display: none;
  margin-top: 20px;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border-radius: 5px;
}