main {
    background-color: lightblue;
    padding-bottom: 15px;
}

form {
    margin-left: 3%;
    width: 25%;
}

label {
    font-family: 'Oswald', sans-serif;
}

.text-section {
    display: flex;
    justify-content: space-between;
    margin: 10px;
}

.single-line-text, .comments-box {
    border: 2px solid black;
    background-color: rgb(148, 209, 230);
    border-radius: 3px;
}

.single-line-text {
    height: 25px;
    width: 200px;
    font-size: 20px;
}

.comments-box {
    width: 465px;
    font-size: 15px;
}

input:focus {
    border-color: red;
}

.reset, .submit {
    border: 2px solid black;
    margin: 10px;
    background-color: rgb(148, 209, 230);
    width: 100px;
    height: 50px;
    border-radius: 3px;
}

.submit:active {
    border-color: green;
}

.reset:active {
    border-color: red;
}

h1 {
    background-color: #EF9559;
    text-align: center;
    padding: 15px;
    margin-top: 0px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    letter-spacing: 3px;
}

h2 {
    text-align: center;
    font-family: 'Readex Pro', sans-serif;
}

@media screen and (max-width: 510px) {
    .comments-box {
        width: 375px;
    }
}

@media screen and (max-width: 1400px) {
    .main-wrapper {
        flex-direction: column;
    }

    .contact-img-wrapper {
        margin-left: 40px;
    }
}

.main-wrapper {
    display: flex;
    justify-content: space-around;
}

.main-right-wrapper {
    display: flex;
    flex-direction: column;
    margin: 0px 40px;
    justify-content: center;
}

p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

p > i {
    font-size: 25px;
}