h2 {
    text-transform: uppercase
}

section {
    background-image: url('../img/elissys_communication_background.jpg');
}

section article {
    position: relative;
    top: calc(50% - 250px);
    left: calc(50% - 400px);
    width: 900px;
    text-align: center
}

section article > p {
    padding-bottom: 75px;
}

form > input {
    width: 100%;
    margin-bottom: 30px;
    padding: 8px;
    border-radius: 5px;
    border-color: transparent;
}

form > input:focus {
    outline: none;
}

form > input[type=submit] {
    width: initial;
    padding: 20px 50px;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid #000;
    border-radius: 0;
    transition: .5s all;
}

form > input[type=submit]:hover {
    background-color: #000;
    color: #fff;
}
footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    background-color: rgba(0,0,0, .5);
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 10px 0;
}
footer p {
    font-size: 1em;
}
footer p a {
    color: #fff !important;
    text-decoration: underline !important;
}