body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: url('https://wallpapers.com/images/hd/1080p-red-and-black-background-05l44wtda6t4d3zw.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 10px;
    color: white;
    max-width: 80%;
}

h1 {
    margin-bottom: 50px;
}

.button-box {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #222;
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 18px;
    transition: 0.3s;
    width: 180px;
}

.button img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.button:hover {
    background-color: #c92222;
}
