body {
    font-family: Arial, sans-serif;
    font-weight: 800;
    background-color: #121212;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
    background-image: url("images/animatedstars.gif");
    background-size: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    padding-top: 50px;
    color: #8E83BA;
    font-size: 3rem;
}

h2 {
    padding-top: 50px;
    color: #8E83BA;
}

ul.no-bullets {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    box-sizing: border-box;
}

.navigation-bar {
    padding-top: 10px;
    padding-bottom: 10px;
}

.navigation-bar li {
    display: inline;
}

.navigation-bar li:last-child {
    border-right: none;
}

.navigation-bar a {
    padding-right: 8px;
    color: #FAEED3;
    text-decoration: none;
}

.text-content p {
    /* Fallback for browsers that don't support clamp() */
    font-size: 0.5rem;
    font-size: clamp(1.25rem, 2.0vw, 1.75rem);
    color: #FAEED3;
    margin-top: 1.5rem;
    animation: fadeIn 0.9s ease-in-out;
}

.text-content a {
    color: #f3d692;
}

.header {
    color: #F2DBA6;
    white-space: nowrap;
    font-size: 3rem;
}

.bold-statements {
    color: #debf7e;
    white-space: nowrap;
}

.titles {
    color: #cfa64a;
    white-space: nowrap;
    font-size: 1.85rem;
    line-height: 50px;
}

.subtitle {
    color: #c48c09;
    white-space: nowrap;
    font-size: 1.0rem;
    line-height: 50px;
    transition: all 0.5s ease;
    animation: fadeIn 0.7s ease-in-out;
}

.button {
    display: inline-block;
    padding: 0.3rem 1.25rem;
    margin-top: 1.5rem;
    font-size: 1.25rem;
    font-size: clamp(1rem, 2.15vw, 1.15rem);
    color: black;
    background: #72591f;
    border: 2px solid #bd9843;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.5s ease;
    animation: fadeIn 0.7s ease-in-out;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    cursor: pointer;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}
.selected {
    display: inline-block;
    padding: 0.3rem 1.25rem;
    margin-top: 1.5rem;
    font-size: 1.25rem;
    font-size: clamp(1rem, 2.15vw, 1.15rem);
    color: black;
    background: #ba8e28;
    border: 2px solid #bd9843;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.5s ease;
    animation: fadeIn 0.7s ease-in-out;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    cursor: pointer;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.button:hover {
    background: #72591f;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.button:active {
    transform: translateY(2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}


.logo {
    /* Fallback for browsers that don't support clamp() */
    width: 600px;
    width: clamp(200px, 40vw, 300px);
    height: auto;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-1px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile styles - reduces side margins by half */
@media (max-width: 767px) {
    .container {
        width: 100%;
    }
}
