body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 200px;
    height: 200px;
    margin: 0;
}

h1 {
    font-size: 2em;
    margin: 0 0 10px;
}

p {
    font-size: 1.2em;
    color: #666;
    margin: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    background: linear-gradient(to bottom, #000000, #ff0000);
}

.button:hover {
    background: linear-gradient(to top, #000000, #ff0000);
}
