* {
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-image: linear-gradient(to right, #0f172a, #1f2937, #0f172a);
    color: #ffcc33;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 96vh;
}

ul {
    color: #fff;
    text-align: center;
    list-style: none;
    padding-left: 0;
}

ul > li {
    margin-bottom: 4px;
}

#logo {
    border-radius: 50%;
    width: 120px;
    margin-bottom: 30px;
}

#button {
    /* Button styling */
    cursor: pointer;
    background-color: #475569;
    border: none;
    border-radius: 8px;
    width: 90vw;
    max-width: 400px;
    margin-bottom: 24px;
    padding: 12px 0;

    /* Text styling */
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    text-align: center;

    transition: all linear 100ms;
}

#button:hover {
    filter: brightness(1.5);
    transform: scale(1.05);
}