
/* Reset and Base Styles */
* {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial;
    -webkit-font-smoothing:antialiased;
    -webkit-tap-highlight-color: transparent;
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    color: #6f4f8f;
    border: none;
    outline: none;
    background: none;
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow: visible;
}

/* Background */
#background {   position:fixed;    background:linear-gradient(0deg, #ffebff, #ffbfff);    inset: 0;    z-index:-1;    }

/* Framework */

html {    overflow:    scroll;height:    100%;width:    100%;    }

dialog {    width:100%;    height:100%;    position:fixed;    top:0;    left:0;    z-index:1000;    }
form {    display:flex;    flex-direction:column;    padding:20px;    max-width:800px;    max-height:600px;    position:absolute;    top:50%;    left:50%;    transform:translate(-50%, -50%);    }

.header {
    width: 100%;
    text-align: center;
    /* Styling */
    box-shadow: inset 0 -80px 100px -40px #ffebff, 0 0 10px #ff80ff;
    background-image: url('./media/MMOS-Stitched-Full.jpg');
    background-size: cover;
    background-position: 50% 32%;
}

nav {
    text-align: center;
    display: flex;
    justify-content: center;
    width:100%;
    gap: 20px;
    padding: 10px;
    flex-wrap: wrap;
}

main {
    width:100%;
    display: flex; flex-direction: column;
    gap: 40px;
}

footer {
    width:100%;
    text-align:center;
}

.footer {
    font-style: italic;
    font-weight: bold;
    color: #bf9fdf;
}

.button {
    padding: 10px;
    margin: 5px;
    cursor: pointer;
    box-shadow: 5px 5px 10px #ff80ff;
    font-weight: bold;
}

.button:hover {
    background-color: #efdbef;
    text-decoration: underline;
    box-shadow: inset 5px 5px 10px #ff80ff;
}

.current {
    background-color: #efdbef;
    cursor: default;
    text-decoration: underline;
    box-shadow: inset 5px 5px 10px #ff80ff;
}

#wrapper {
    gap: 40px;
    flex-direction: column;
    width:100%;
    padding: 40px;
}

.padding {
    padding: 0 40px;
}

span {
    height: 0px;
    box-shadow: 0px 0px 5px 1px #6f4f8f;
}










.section {
    display: flex;
    gap: 40px;
    width:100%;
    flex-wrap: wrap;
    justify-content: center;
}

aside {
    width: 200px;
    height: auto;
    flex-shrink: 0;
}

.content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    gap: 20px;
}




#enter:checked ~ dialog {
    display: none;
}

#enter:checked ~ #wrapper {display: flex;}



.enter { display: inline-block; width: 100%; padding: 10px 20px; background: #4a7; color: white; cursor: pointer; font-weight: bold; }

h1 {
    font-size: 4em;
    text-shadow: 5px 5px 10px #ff80ff, -1px -1px 0 #ff80ff, 1px -1px 0 #ff80ff, -1px 1px 0 #ff80ff, 1px 1px 0 #ff80ff;;
}

h2 {
    font-size: 2.5em;
}




/* visual styling */




.border {
    border: 1px solid #ff80ff;
    border-radius: 10px;
}

.glow {
    box-shadow: 0 0 10px #ff80ff;
}

.backdrop {
background: #ffebff;
}


/* Theming */

legend {
    padding: 10px;
    position: absolute;
    top: -1.2rem; /* adjust until it looks perfect */
    left: 1rem;   /* optional: align horizontally */
}

#theme {
    position: relative;
    padding-top: 2.5rem; /* space for the floating legend */
    height: 100%;
}

#themes {
    margin-top: 20px;
    flex-direction: column;
    gap: 40px;
}