body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(https://i.ibb.co/h7kv1pB/wolfi.gif);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white; /* Text color to stand out against the background */
}

header {
    background-color: rgba(51, 51, 51, 0.8); /* Semi-transparent background */
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    z-index: 1; /* Ensures the header is on top */
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    margin-top: 120px; /* Adjusting for fixed header */
}

.button {
    background-color: #6a0dad; /* Purple */
    color: white;
    text-decoration: none;
    padding: 15px 35px; /* Slightly smaller padding */
    margin: 15px 0; /* More margin for spacing */
    text-align: center;
    font-size: 18px; /* Slightly smaller font size */
    border-radius: 12px;
    transition: background-color 0.3s;
    width: 350px; /* Longer buttons */
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button img {
    margin-right: 10px;
    width: 28px; /* Adjusted icon size */
    height: 28px; /* Adjusted icon size */
}

.button:hover {
    background-color: #551a8b; /* Darker Purple for hover effect */
}
