/* SPDX-FileCopyrightText: 2026 Richard Guse <bunchberrySoftware@protonmail.com> */
/* SPDX-License-Identifier: GPL-3.0-or-later */
/* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. */

body {
    font-size: 25px;
}

.container {
    width: 100vw;
    margin: 0 auto;
    text-align: center;
}

a {
    display: inline-block;
    margin: 10px 5px;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--accent-color);
    background-color: var(--bg-color);
    border-radius: 30px;
    border: 1px solid var(--accent-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

a:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(3, 218, 198, 0.3);
}

a:active {
    transform: translateY(0);
}
