#title-Tag-Line {
    font-size: 20px;
}

.form {
    background: #292929;
    box-shadow: 0 30px 60px 0 rgba(98, 0, 238, 0.4);
    border-radius: 5px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    left: 0;
    right: 0;
    position: absolute;
    border-top: 5px solid #BB86FC;
    animation: bounce 1.5s infinite;
}

::-webkit-input-placeholder {
    font-size: 1.3em;
}

.title{
    color:white;
    display: block;
    font-family: sans-serif;
    margin: 10px auto 5px;
    width: 300px;
}

.pageTitle{
    font-size: 2em;
    font-weight: bold;
    font-family: "Titillium Web";
}
.secondaryTitle{
    color: #B3B3B3;
    font-family: "Titillium Web";
}

.name {
    background-color: #515966;
    color: white;
    font-family: "Titillium Web";
}
.name:hover {
    border-bottom: 5px solid #03DAC6;
    height: 30px;
    width: 380px;
    transition: ease 1s;
}
.email {
    background-color: #515966;
    color: white;
    height: 2em;
}

.email:hover {
    border-bottom: 5px solid #03DAC6;
    height: 30px;
    width: 380px;
    transition: ease 1s;
}

.message {
    background-color: #515966;
    overflow: hidden;
    height: 10rem;
    color: white;
}

.message:hover {
  border-bottom: 5px solid #03DAC6;
  height: 12em;
  width: 380px;
  transition: ease 1s;
}

.formEntry {
    display: block;
    margin: 30px auto;
    min-width: 300px;
    padding: 10px;
    border-radius: 2px;
    border: none;
    transition: all 1s ease 0s;
}

.submit {
    width: 200px;
    color: white;
    background-color: #BB86FC;
    font-size: 20px;
}

.submit:hover {
    box-shadow: 15px 15px 15px 5px rgba(78, 72, 77, 0.219);
    transform: translateY(-3px);
    width: 300px;
    border-top: 5px solid #03DAC5;
    border-radius: 0%;
}

@keyframes bounce {
    0% {
        transform: translate(0, 4px);
    }
    50% {
        transform: translate(0, 8px);
    }
}

::placeholder
{
    color: white;
}