* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#container {
    text-align: center;
    background: #111;
    padding: 40px;
    border-radius: 15px;
    width: 60%;
    max-width: 600px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

#quote {
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 1.5;
}

#btn {
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    background: #00adb5;
    color: black;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s ease;
}

#btn:hover {
    background: #007b83;
    transform: scale(1.05);
}

#btn:active {
    transform: scale(0.95);
}