@import url('https://fonts.googleapis.com/css2?family=Micro+5&display=swap');

body {
    font-family: 'Micro 5', sans-serif;
    font-size: 1.2em; /* Scaled up a bit */
    background: url('images/splash.webp') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 0;
}

h1 {
    font-style: normal;
    color: #00ff00;
    text-shadow: 2px 2px 0px #000000;
    margin: 20px 0;
}

a {
    text-decoration: none;
    font-style: normal;
    color: #00ff00;
    text-shadow: 1px 1px 0px #000000;
    font-size: 1.2em;
}

a:hover {
    text-decoration: underline;
    color: #00cc00;
}

a:visited {
    color: #00ff00;
}

div {
    display: block;
    padding: 20px;
    background-color: rgba(43, 43, 43, 0.9);
    margin: 20px auto;
    width: 80%;
    max-width: 800px;
}

.servlist {
    background-color: rgba(59, 59, 59, 0.9);
}

#eaglerDropdown {
    font-family: 'Micro 5', sans-serif;
    background: url('images/button.png') no-repeat center center;
    background-size: cover;
    color: #ffffff;
    border: none;
    padding: 10px;
    margin: 10px 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-shadow: 1px 1px 0px #000000;
    cursor: pointer;
}

#eaglerDropdown option {
    font-family: 'Micro 5', sans-serif;
    background: rgba(59, 59, 59, 0.9);
    color: #ffffff;
    text-shadow: 1px 1px 0px #000000;
}

button {
    font-family: 'Micro 5', sans-serif;
    background: url('images/button.png') no-repeat center center;
    background-size: cover;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    text-shadow: 1px 1px 0px #000000;
}

button:hover {
    border: 2px solid #ffffff;
}

button:active {
    transform: translateY(2px);
}

ul, ol {
    text-align: left;
    margin: 10px auto;
    padding: 0;
    list-style: none;
}

ul li, ol li {
    background-color: #4b4b4b;
    padding: 10px;
    margin: 5px 0;
    color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
}