body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5faff;
    margin: 0;
    padding: 0;
    
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

    color: #003262; /* UCI blue */
}

.content {
    text-align: center;
    padding: 30px 40px;
    border-radius: 12px;
    background-color: #ffffff;

    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
}

h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #FDB515; /* UCI gold */
}

ol {
    list-style: none;
    padding: 0;
    margin: 0;

    font-size: 22px;
    line-height: 1.8;
}

li {
    margin: 12px 0;
}

a {
    text-decoration: none;
    color: #003262;
    font-weight: 600;
}

a:hover {
    color: #FDB515;
    transition: 0.2s ease;
}
.top-button-wrapper {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
}
.top-button-wrapper button {
    padding: 16px 32px;
    font-size: 20px;
    font-weight: 700;
    background: var(--uci-blue);
    color: var(--uci-gold);
    border: 3px solid var(--uci-gold);
    border-radius: 14px;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}


.top-button-wrapper button:hover {
    background: var(--uci-gold);
    color: var(--uci-blue);
    transform: scale(1.1);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}
