body {
    font-family: 'Georgia', serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.main_section {
    max-width: 80%;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.quote-display {
    margin-bottom: 20px;
    font-size: 18px;
    color: #34495e;
    background-color: #ffffff;
    transition: color 0.3s, background-color 0.5s;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    padding: 10px;
}

.quote-display.real-quote:hover {
    color: #2c3e50;
    background-color: #ecf0f1;
    border: 1px solid #7f8c8d;
}

.quote-button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #34495e;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.quote-button:hover {
    background-color: #2c3e50;
}

@keyframes slideIn {
    0% {
        transform: translateY(-30%);
        opacity: 0;
        filter: blur(5px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
        filter: blur(0px);
    }
}

.quote-display.slide-in {
    animation: slideIn 0.5s ease-out;
}

.notification {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
        transform: translateY(20px);
    }
    10%, 90% {
        opacity: 1;
        transform: translateY(0);
    }
}
