.container {
    background: linear-gradient(45deg, red, black);
    color: white;
    font-family: 'Arial', sans-serif;
    text-align: center;
    padding: 20px;
    border: 2px solid white;
}

h1 {
    font-size: 48px;
    text-shadow: 2px 2px 5px black;
}

p {
    font-size: 20px;
    margin: 10px 0;
}

button {
    background-color: red;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    transition: 0.3s;
}

button:hover {
    background-color: black;
    color: red;
    cursor: pointer;
}