@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height:100vh;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    flex-direction: column;
}

.container {
    text-align: center;
    width: 80%;
    max-width: 600px;
    background: blur(10px) #0eb4bc;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(10, 146, 184, 0.5);  
}

h1 {
    margin-bottom: 20px;
    color: #00bcd4;
}

.quote-box {
    margin: 20px 0;
    padding: 20px;
    background: #181616;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(5, 95, 126, 0.5);
}

#quote {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    margin-bottom:10px ;
}

#author {
    font-family: "Playfair Display", serif;
    font-style: italic;
    display: block;
    font-size: 1.2rem;
    color: #bdbdbd;
}

.buttons {
    margin-top: 20px;
}
                                                      

button {
    background: #00bcd4;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    margin: 0 10px;
    transition: background 0.3s ease ;
}

button:hover {
    background: #0097a7;
}

footer {
    margin-top: 50px;
    padding: 20px;
    background-color: #1e1e1e;
    color: #bdbdbd;
    text-align: center;
    border-top: 1px solid #2a2a2a;
    margin-bottom: 0px;
}

.footer-content p {
    margin: 0;
    font-size: 0.9rem;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    margin: 0 10px;
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links img {
    width: 24px;
    height: 24px;
}

.social-links a:hover {
    transform: scale(1.2);
}
