body {
    height: 100%;
}

.container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.info-box {
    flex: 1;
    padding: 20px;
    margin: 10px;
    background: white;
    border-radius: 20px;
}
h1 {
    margin-top: 10px;
    padding-bottom: 10px;
    margin-left: 20px;
}

.info-box h4,h3,input,textarea {
    margin-left: 20px;
}
.info-box h4 {
    margin-bottom: 15px;
}

.form-box h3 {
    margin-bottom: 5px;
}
.info-box h3 {
    /*margin-bottom: 20px;*/
}

.form-box {
    flex: 1;
    margin: 10px;
    padding: 20px;
    background: white;
    border-radius: 20px;
}
.email-box{
    flex-grow: 1;
}
.name-box{
    flex-grow: 1;
}

input, textarea {
    border: 1px solid #e9e9e9;
    padding: 0 10px 0 10px;
    margin-bottom: 10px;
    height: 30px;
    border-radius: 10px;
    background: #e9e9e9;
    font-family: 'Inter', sans-serif;

}
textarea {
    width: 100%;
    height: 100px;
    padding-top: 5px;
}

input:focus,textarea:focus {
    border: 1px solid #1545bf;
    outline: none;
}
button {
    font-family: 'Inter', sans-serif;
    background: #1545bf;
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    margin-left: 20px;
    border-radius: 20px;
    border: none;
    margin-bottom: 20px;
}

button:hover {
    background: #1f4dc3;
}

button:hover {
    background: #1f4dc3;
}

button:active {
    outline: none;
    border: none;
}

button:focus {
    outline: none;
    border: none;
}

.form-box {

}

.line-one {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;

}

.message-box {
    display: flex;
    flex-wrap: wrap;
}

.contact-text {
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 35%;
}

.contact-text h1,h2 {
    display: flex;
    align-items: center;
}

.footer {
    height: 100px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: hidden; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    max-width: 300px;
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*width: 30%; !* Could be more or less, depending on screen size *!*/
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.status-img {
    text-align: center;
    width: 60%;
    padding: 20px 0 20px 20px;
}

.modal-content h2 {
    text-align: center;
    display: inline-block;
}

input,textarea {
    -webkit-appearance: none;
}

.whole-page {
    position: center;
    width: 100%;
}