body {
    font-family:"Comic Sans MS", "Arial";
    color: white;
    background-color: #222222;
}
.copybody {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
}
#mail{
    background-color: aqua;
    color: green;
}
#mail:hover {
    background-color: aquamarine;
    color: blueviolet;
}
#about{
    background-color: yellow;
    color: black;
}
#about:hover {
    background-color: orange;
    color: white;
}
button {
    -webkit-text-stroke: 0px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
}
button:hover {
    -webkit-text-stroke: 0px;
    cursor: pointer;
}
.blue {
    color: blue;
    -webkit-text-stroke: 3px white;
}