/* Reset some default browser spacing */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000;
    line-height: 1.6;
	font-size: 1.2rem;
}

/* Decorative background image layer */
.background-image {
    position: fixed;               /* stays in place while scrolling */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url("background.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;       /* or cover, depending on your design */

    z-index: -10;
    pointer-events: none;           /* prevents blocking clicks */
	image-rendering: pixelated;
}

/* Banner at the top */
.banner {
display: block;         /* only as wide as content */

    width: fit-content;      /* shrink to content width */
    color: #000;
	background-color: #ffffff;
    padding: 2rem 4rem;
	margin: 2rem auto;
    text-align: center;
	border: 3px solid #000;
}

.banner h1 {
    font-size: 5vw;

    font-weight: bold;
}

.banner h1 a {
    text-decoration: none;  /* remove underline */
    color: inherit;         /* keep the banner text color */
}

/* Banner at the top */
.banner_selected {
display: block;         /* only as wide as content */

    width: fit-content;      /* shrink to content width */
    color: #ffffff;
	background-color: #000;
    padding: 2rem 4rem;
	margin: 2rem auto;
    text-align: center;
	border: 3px solid #ffffff;
}

.banner_selected h1 {
    font-size: 5vw;
    font-weight: bold;
}

.banner_selected h1 a {
    text-decoration: none;  /* remove underline */
    color: inherit;         /* keep the banner text color */
}
/* Main content wrapper */
.content-wrapper {
    display: flex;
    justify-content: center;
    padding: 1rem 1rem;
}

/* Centered content box */
.content {
    background-color: #ffffff;
	border: 3px solid #000000;
    max-width: 800px;
    width: 100%;
    padding: 2rem;
}

.content a {
    color: inherit;         /* keep the banner text color */
}

/* Container for the boxes */
.feature-boxes {
    display: flex;
    justify-content: center;  /* center boxes horizontally */
    gap: 1rem;                /* space between boxes */
    padding: 1.5rem;
    flex-wrap: wrap;          /* wrap on small screens */
font-size:2rem;	
}

/* Individual boxes */
.feature-boxes .box {
    background-color: #ffffff;
    color: #000;
    padding: 1rem 2rem;
    
	border: 3px solid #000000;
	text-align: center;
    cursor: pointer;
    text-decoration: none;    

    font-weight: bold;
}

/* Individual boxes */
.feature-boxes .selected_box {
    background-color: #000;
    color: #ffffff;
    padding: 1rem 2rem;
    
	border: 3px solid #ffffff;
	text-align: center;
    cursor: pointer;
    text-decoration: none;   
    font-weight: bold;
}
