.content {
    color: white;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15vh;
    animation: fadeInFromLeft 2s;
}


@keyframes fadeInFromLeft {
from {
    transform: translateX(-50%);
    opacity: 0;
}
to {
    transform: translateX(0);
    opacity: 1;
}
}

button {
    border: 2px solid white;
    border-radius: 10px;
    background-color: rgb(19,19,19);
    color: white;
    font-family: 'Courier New', monospace;
    font-size: large;
    font-weight: bold;
}


a:link, a:visited {
    text-decoration: none;
    color: white;
}
a:hover, a:active {
    text-decoration: none;
    font-size: 19px;
    color: rgb(48, 48, 48)
}


h1 {
    font-size: 25px;
    font-weight: bolder;
}

p {
    font-size: 20px;
    font-weight: bold;
}

#menu {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
}

#socials {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#socials > button {
    padding: 20px 20px;
    margin-top: 10px;
    width: 50%;
}

#siteDirectory {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}
#siteDirectory > button {
    width: 60%;
    padding: 20px;
    margin-right: 35%;
    margin-top: 10px;
}

#recentPost {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}
#recentPost > button {
    width: 60%;
    padding: 20px;
    margin-left: 35%;
    margin-top: 10px;
}