* {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
}

body {
    background-color: whitesmoke;
}

.main-contact-me {
    background-image: linear-gradient(#9117AF, #A00270);
    width: 15rem;
    height: 24rem;
    margin: 10rem auto;
    padding: 2.0rem 3.0rem;
    color: white;
    border-radius: 20px 0 20px 0;
    box-shadow: 5px 5px 10px gray;
}

.the-form input:focus {
    border: solid 3px gold;
    color: palevioletred;
}

.the-form p {
    margin: 0.5rem 0 0rem 0;
}

.the-form hr {
    color: #fff;
}

#message:focus {
    border: solid 3px goldenrod;
    color: palevioletred;
}

#send {
    width: 5rem;
    height: 2rem;
    border: solid 2px white;
    border-radius: 6px;
    color: white;
    background: none;
}

#send:hover {
    cursor: pointer;
    background-color: white;
    color: #A00270;
}

.tooltip {
    visibility: hidden;
    background-color: palevioletred;
    color: #fff;
    text-align: center;
    padding: 0.5rem;
    border-radius: 0.5rem 0.5rem 0.5rem 0;
    margin-top: -1.5rem;
    margin-left: -.5rem;
   
    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
  }

.message-tooltip {
    margin-left: 15rem;
    margin-top: -8rem;
}

.the-salutation {
    height: 100vh;
    text-align: center;
}