body {
    margin: 0;
    background: linear-gradient(180deg, #080010, #170026);
    color: white;
    font-family: Arial, sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 100vh;
    text-align: center;
}

.container {
    max-width: 900px;
}

h1 {
    font-size: 6rem;
    margin-bottom: 10px;
    color: #d896ff;
}

p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

button {
    background: transparent;
    color: white;

    border: 2px solid #d896ff;
    border-radius: 14px;
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;

    font-size: 18px;

    transition: all .3s ease;
}

button:hover {
    background: #d896ff;
    color: black;
    transform: translateY(-3px);
}
