*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.main {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #acb6e5, #74ebd5);
    margin: 0;
    overflow: hidden;
}
svg {
    position: absolute;
    bottom: 0;
    left: 0;
}
.container {
    background: #ffffff10;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 50%;
    z-index: 555;
}
h1 {
    font-size: 40px;
    font-weight: 600;
}
p {
    font-size: 18px;
    font-weight: 300;
}
.quote {
    font-style: italic;
    margin: 20px 0;
    font-size: 20px;
    transition: opacity 0.5s ease-in-out;
}
button {
    background: #4a90e2;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s;
}
button:hover {
    background: #357ABD;
}