@font-face {
    font-family: SquareSans;
    src: url(ASSets/fontreg.ttf);
}

body {
    background-color: black;
}

h1 {
    color: white;
    font-size: 3vw;
    font-family: SquareSans;
    text-align: center;
}

p{
    color: white;
    font-size: 2vw;
    font-family: SquareSans;
    text-align: center;
    float: center;

}

a{
    color: lightblue;
    size: 3vw;
    font-family: SquareSans;
    text-align: center;
}

e {
    color: white;
    size: 20px;
    font-family: SquareSans;
    text-align: justify;
}

s {
    color: white;
    size: 10px;
    font-family: SquareSans;
    text-align: justify;
}

e1 {
    color: white;
    size: 50px;
    font-family: SquareSans;
    text-align: justify;
}
.topnav {
    background-color: #333;
    overflow: hidden;
    z-index: 5;
    
}

.topnav a {
    float: left;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font: 5vw;
    font-family: SquareSans;
    z-index: 5;
}

.topnav b {
    float: right;
    color: white;
    text-align: left;
    padding: 14px 16px;
    text-decoration: none;
    font: 5vw;
    font-family: SquareSans;
    z-index: 5;
}

.topnav a:hover {
    background-color: lightskyblue;
    color: black;
}


.topnav a:active {
    background-color: blue;
    color:white
}

body, html {width: 100%;
height: 100%;
}

iframe {width: 100%;
height: 100%;
border: none;}

.button-container {
    display: flex;
    flex-direction: column;    /* stack buttons vertically */
    align-items: center;       /* center them horizontally */
}

.button {
    background-color: white;
    border: none;
    color: black;
    text-align: center;
    text-decoration: none;
    display: inline-block;            
    font-size: 18px;
    cursor: pointer;
    font-family: SquareSans;
    margin: 5px 0;
    width: 250px;              
    padding: 20px 0;
    border-radius: 4px;        
}

/* ===== 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;
    }
}