* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(to bottom, #FF3008, #D30008);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}

.container {
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin: 20px 0;
}

p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.logo img {
    max-width: 200px;
    margin-bottom: 30px;
}
