* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.container {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: 10px;
}

h1 {
    margin-bottom: 20px;
    font-size: 2em;
}

p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.thanks {
    margin-top: 20px;
    font-style: italic;
}
