body {
    margin: 0;
    padding: 0;
    background: url('background.png') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
    padding: 100px 0;
}

img {
    max-width: 200px;
    border-radius: 50%;
}

h1 {
    color: #d9c4c4;
    font-size: 36px;
    font-family: Agency FB, sans-serif; /* Use a normal font */
}

.buttons {
    margin-top: 20px;
}

.button {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: rgba(80, 80, 80, 0.5);
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 10px rgba(80, 80, 80, 0.5);
    font-family: 'Arial Black', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

.button-content {
    display: flex; /* Use flexbox to align items horizontally */
    align-items: center; /* Center items vertically within the container */
}

.button img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.button span {
    display: inline; /* Make the text inline */
}

.button:hover {
    background-color: rgba(80, 80, 80, 0.7);
    box-shadow: 0 0 20px rgba(80, 80, 80, 0.7), 0 0 40px rgba(80, 80, 80, 0.7);
}

.footer {
    color: #5b5757; /* Set text color to white */
    text-align: center;
    padding: 10px;
    position: fixed; /* Fix the footer at the bottom */
    width: 100%; /* Make the footer span the entire width */
    bottom: 0; /* Stick the footer to the bottom of the viewport */
}

.status-button {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 999;
}



.status-button .button-content {
    display: flex;
    align-items: center;
}

.status-button img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.status-button span {
    font-size: 14px;
}