@font-face {
    font-family: SquareSans;
    src: url(ASSets/fontreg.ttf);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    font-family: SquareSans, sans-serif;
}

/* MAIN CONTENT */
main {
    text-align: center;
    padding: 40px 20px;
}

h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* BUTTON MENU */
.button-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.menu-btn {
    background-color: #333;
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 8px;
    transition: 0.3s;
    min-width: 120px;
    text-align: center;
}

.menu-btn:hover {
    background-color: lightskyblue;
    color: black;
}

.menu-btn:active {
    background-color: blue;
    color: white;
}

/* MOBILE IMPROVEMENTS */
@media (max-width: 600px) {
    .button-container {
        flex-direction: column;
        align-items: center;
    }

    .menu-btn {
        width: 90%;
        max-width: 300px;
        font-size: 18px;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }
}

/* ===== MATCH INDEX PAGE STYLE ===== */

main {
    text-align: center;
    padding: 40px 20px;
}

/* Fix heading + paragraph scaling */
h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* BUTTON STYLE (same as homepage) */
.menu-btn {
    background-color: #333;
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 8px;
    transition: 0.3s;
    min-width: 200px;
    text-align: center;
}

/* Hover + click effects */
.menu-btn:hover {
    background-color: lightskyblue;
    color: black;
}

.menu-btn:active {
    background-color: blue;
    color: white;
}

/* Layout like homepage */
.button-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Mobile improvements */
@media (max-width: 600px) {
    .button-container {
        flex-direction: column;
        align-items: center;
    }

    .menu-btn {
        width: 90%;
        max-width: 300px;
        font-size: 18px;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }
}