.contact-input {
    width: 100%;
    background-color: #e2eeff;
    transition: all 150ms linear;
    font-size: 20px;
    border: none;
    outline: none;
    padding: 4px 8px;
    color: #0c121b;
    box-sizing: border-box;
}

.contact-input:focus {
    background-color: #fff;
}

.section-title {
    font-size: 25px;
    color: #ceab49;
    font-weight: 300;
    margin-bottom: 10px;
}

.contact-wrap {
    width: 500px;
}

.contact-section {
    padding: 20px 0;
}

.contact-page {
    display: flex;
    justify-content: center;
}

.contact-textarea {
    height: 200px;
}

.send-it {
    padding: 10px 45px;
    border-radius: 6px;
    background-color: #ceab49;
    display: inline-block;
    color: #e2eeff;
    cursor: pointer;
    transition: all 150ms linear;
}

.send-it:hover {
    background-color: #bd9e49;
    box-shadow: 3px 14px 32px -4px rgba(0, 0, 0, 0.75);
    color: #ffffff;
}

.submit-wrap {
    text-align: center;
    padding: 40px 0;
    font-size: 40px;
}

.success {
    color: rgb(73, 211, 73);
}

@media only screen and (min-width: 768px) {
    /* tablets and desktop */
}

@media only screen and (max-width: 767px) {
    /* phones */
}

@media only screen and (max-width: 767px) and (orientation: portrait) {
    /* portrait phones */
}