* {
    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;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url("background.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;      

    z-index: -10;
    pointer-events: none;         
    image-rendering: pixelated;
}

.banner {
    display: block;       
    width: fit-content; 
    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;     
    color: inherit;         
}

.banner_selected {
    display: block;       
    width: fit-content;  
    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;  
    color: inherit;         
}

.content-wrapper {
    display: flex;
    justify-content: center;
    padding: 1rem 1rem;
}

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

.content a {
    color: inherit;         
}

.feature-boxes {
    display: flex;
    justify-content: center;  
    gap: 1rem;               
    padding: 1.5rem;
    flex-wrap: wrap;          
    font-size:2rem;	
}

.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;
}

.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;
}
