
body {
    background-color: antiquewhite;
    font-family: "Darker Grotesque", sans-serif;
    font-optical-sizing: auto;
    display: flex;
    flex-direction: column;
    font-style: normal;
}

a {
    color: red;
    text-decoration: none;
    padding: .3rem;
    border: .2rem solid black;
    display: flex;
    margin: 1rem;
    text-align: center;
    flex-direction: column;
    font-size: x-large;
    justify-content: center; /* Align text horizontally */
    align-items: center; /* Align text vertically */
}

a:hover {
    color: black;
    background-color: red;
    transition: color 1s;
    transition: background 1s;
    box-shadow: 2px 2px 0px black; /
}

p {
    text-align: center;
    font-size: calc(.5rem + 1vw);
}

.title {
    font-weight: bold;
    text-align: center;
    flex-direction: column;
    font-size: calc(2rem + 1vw);
}

.title:hover {
animation: rainbow 2s infinite; /* Infinite animation of rainbow colors */
text-shadow: 2px 2px 0px black;
}


.contact-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin: 1rem;
}

@keyframes rainbow {
    0% { color: red; }
    14% { color: orange; }
    28% { color: rgb(255, 195, 31); }
    42% { color: green; }
    57% { color: blue; }
    71% { color: indigo; }
    85% { color: violet; }
    100% { color: red; }
}