.container {
    max-width: 800px;
    padding: 20px;
}

body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    background-color: #1a1a1a;
    color: #f0f0f0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

button {
    width: 250px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 1.1em;
    background-color: #5a5a5a;
    color: #f0f0f0;
    border: 2px solid #8c8cff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin-top: 20px;
}

button:hover {
    background-color: #6a6a6a;
    border-color: #a0c0ff;
}

button img {
    flex-direction: row;
    width: 20px;
    height: 20px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin-left: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#donate-button-container {
    width: 250px;
    height: 50px;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #5a5a5a;
    border: 2px solid #8c8cff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease,
        transform 0.2s ease;
    box-sizing: border-box;
    padding: 0;
}

#donate-button-container:hover {
    background-color: #6a6a6a;
    border-color: #a0c0ff;
    transform: translateY(-2px);
}

#donate-button-container #donate-button a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

#donate-button-container #donate-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h1 {
    color: #ffffff;
    font-size: 2.5em;
    margin-bottom: 15px;
}