html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'Arial', sans-serif;
    text-align: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    /* Replaced old gradient with the new high-contrast combination */
    background-image: linear-gradient(to bottom, #151b83 11%, #ff5203 132%);
}

.home {
    width: 100%;
    /* Used the vibrant orange as a standout accent color for the nav bar */
    background-color: #ff5203;
    padding-top: 10px;
    padding-bottom: 10px;
}

.home a {
    width: 100%;
    padding-top: 1px;
    padding-bottom: 1px;
    /* White text provides excellent contrast against the orange background */
    color: #fff;
}

h1 {
    display: block;
    font-size: 2em;
    -webkit-margin-before: 0.67em;
    -webkit-margin-after: 0.67em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    font-size: 32px;
    line-height: 40px;
    font-family: 'Arial', sans-serif;
    /* White text is most readable against the new dark blue background */
    color: #ffffff;
}

.spotlight-group {
    /* A subtle, transparent white creates a modern "glass" effect on the dark bg */
    background: rgba(255,255,255,0.10);
    padding-top: 50px;
    padding-bottom: 50px;
}

a {
    display: inline-block;
}

b {
    display: block;
    padding: 10px;
    /* Slightly more opaque to layer on top of the spotlight-group */
    background: rgba(255,255,255,0.15);
}

button {
    padding: 5px 10px;
}

img,
.image {
    width: 30vw;
    max-width: 300px;
    margin: 1vh 1vw;
}

.image {
    display: inline-block;
    height: 20vw;
    max-height: 200px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.spotlight.image {
    cursor: pointer;
}