body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    margin: 0;
    width: 100vw;
    height: 100vh;

    background-color: black;

    color: white;

    font-family: "Comfortaa", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

a {
    color: rgb(255, 252, 178);
    transition: all 0.5s;
}

a:hover {
    text-shadow: 0 0 10px rgb(255, 252, 178);
}