body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background: radial-gradient(circle, #211f3a 0%, #132126 80%, #0f262e 100%);
    background-size: 100% 100%;
    background-position: center;
    animation: animated-gradient 5s ease infinite;
}


@keyframes animated-gradient {
    0% { background-size: 100% 100%; }
    50% { background-size: 200% 200%; }
    100% { background-size: 100% 100%; }
}

/*TODO: maybe put on global?*/

.center {
    background-color: var(--bg_col);
    padding: 2em;
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
    outline: .05em solid var(--col);

    text-align: center;

}

.center h3 {
    max-width: fit-content;
}

.links {
    margin-top: 1em;
    width: 100%;

    display: flex;
    flex-direction: row;
    gap: .4em;

    align-items: center;
    justify-content: space-around;

    flex-wrap: wrap;

}