*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    background-color: #1e1e1e;
    color: #e0e0e0;
    line-height: 1.25;
}

h1{
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

h2{
    font-size: 2rem;
}

span{
    color: #00c853;
    font-style: italic;
}

section{
    /* background: green; */
    height: 100%;
    padding: 2rem 0;
}

.container{
    width: 80%;
    height: 100%;
    display: flex;
    /* background: red; */
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.main_text{
    text-align: center;
    /* background: red; */
}

.main_form, form{
    width: 100%;
}

form{
    display: flex;
    flex-direction: column;
}

textarea, select,button{
    width: 100%;
    border: 0;
    background-color: #ccc;
    color: #1e1e1e;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 15px;
}

textarea:focus,
select:focus,
button:focus {
  outline: 2px solid #00c853;
  outline-offset: 3px;
}

button{
    background-color: #00c853;
    cursor: pointer;
    transition: .3s background ease-in-out;
}

button:hover{
    background-color: #00a043;
}

@media screen and (max-width: 766px) {
  .container{flex-direction: column;align-items: center;text-align: center;}
  h1{font-size: 2rem;}
  h2{font-size: 1.25rem;}
  section {padding: 2rem 0;}
}



