html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    user-select: none;
    background-color: #1d1d1d;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    text-align: center;
    color: #fff;
}

.loading-svg {
    width: 160px;
    height: 160px;
}

h1 {
    font-size: 24px;
    margin: 10px;
}

p {
    font-size: 16px;
    margin: 5px;
}

a {
    font-weight: bold;
    color: inherit;
    text-decoration: none;
}

.skip-button {
    background-color: #ffb703;
    border: none;
    color: #1d1d1d;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}