@font-face {
    font-family: "Ubuntu";
    src: url("/fonts/Ubuntu/Ubuntu-Medium.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Ubuntu";
    src: url("/fonts/Ubuntu/Ubuntu-Bold.ttf");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Ubuntu";
    src: url("/fonts/Ubuntu/Ubuntu-Italic.ttf");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "Ubuntu";
    src: url("/fonts/Ubuntu/Ubuntu-BoldItalic.ttf");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: "Ubuntu";
    src: url("/fonts/Ubuntu/Ubuntu-Light.ttf");
    font-weight: lighter;
    font-style: normal;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin: 0;
    background: url("/img/aero-blue.png") no-repeat center center fixed;
    background-size: cover;
    overflow: hidden;
}

h1, h2, h3, p, span {
    font-family: "Ubuntu", sans-serif;
    color: #fff;
}

p, span {
    font-weight: lighter;
}

.glow-small {
    box-shadow: 0 0 5px #fff, 0 0 10px #c0efff;
    max-width: 200px;
}

.glow-large {
    box-shadow: 0 0 10px #fff, 0 0 20px #c0efff, 0 0 30px #80d4ff, 0 0 40px #40b8ff;
}

.glow-heading {
    text-shadow: 0 0 3px #fff, 0 0 8px #80d4ff, 0 0 12px #40b8ff;
    margin: 0;
    margin-bottom: 7px;
    margin-left: 12px;
    z-index: 1;
}

.underline {
    text-decoration: underline;
    text-decoration-thickness: 3px;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 2;
    height: 90%;
}

.spacer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    height: 100%;
}

.box {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 12px;
    background: linear-gradient(135deg, #002244, #0077cc); /* More pronounced gradient */
    outline: 1px solid #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 10px #fff, 0 0 20px #c0efff, 0 0 30px #80d4ff, 0 0 40px #40b8ff;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    transform: translateZ(0);
}

.title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.menu {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    height: 60%;
    padding: 40px;
}

.options-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
    font-family: "Ubuntu", sans-serif;
    font-size: 15px;
}

.option-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0;
}

.theme-dropdown {
    margin-left: 10px;
    padding: 5px;
    border: 1px solid #80d4ff;
    border-radius: 5px;
    background: #003366;
    color: #fff;
    font-family: "Ubuntu", sans-serif;
    font-size: 14px;
    outline: none;
    box-shadow: 0 0 5px #80d4ff; /* Glow on the dropdown */
}

.theme-dropdown option {
    text-shadow: none; /* Removed glow from the text within the dropdown */
}

.sound-switch {
    margin-left: 10px;
    width: 15px;
    height: 15px;
    accent-color: #80d4ff;
    cursor: pointer;
}

.option-heading {
    font-family: "Ubuntu", sans-serif;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 1px #fff, 0 0 3px #c0efff;
    margin: 5px 0;
    border-bottom: 1px solid #80d4ff;
    padding-bottom: 2px;
    display: inline-block;
}
