* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d10000;
    --secondary-color: #001020;
    --background-color: #ffffff;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--secondary-color);
    line-height: 1.6;
    font-size: 1.0rem;
    overflow: hidden;
    overflow-y: scroll;
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
    /* font-family: 'Orbitron', Arial, sans-serif; */
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: var(--background-color);
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    border: 1px solid var(--primary-color);
}

.btn:hover {
    background-color: darken(var(--primary-color), 10%);
    text-decoration: none;
    border: 1px solid var(--primary-color);
}

.main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 30px;
}

.site-error {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

@media screen and (max-width: 768px) {
    .site-error {
        padding: 10px;
    }

    .btn {
        padding: 0.3rem 0.8rem;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 576px) {}