body {
    font-family: 'Arial', sans-serif;
    background-color: #282c34;
    color: rgb(23, 23, 23);
    margin: 0;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #61dafb;
}

.container {
    text-align: center;
    width: 1200px;
    height: 900px;
    margin: 0 auto;
    color: #61dafb;
    background-color: #282c34;
    margin-top: 100px;
}
.title{
    color: rgb(253, 165, 3);
    position: relative;
    top: 100px;
    font-size: 50px;
    font-style: italic;
    font-family: Arial, Helvetica, sans-serif;
}

.container_1{
position: relative;
top: 30%;
}
#quote-container {
    position: relative;
    overflow: hidden;
}

.card {
    background-color: #f5f5dc; /* Cream color */
    padding: 40px; /* Increased padding for a larger card */
    border-radius: 12px; /* Increased border radius for a rounded appearance */
    margin-bottom: 20px;
    transition: transform 0.5s ease-in-out, background-color 0.5s ease-in-out;
}

#quote {
    font-size: 45px;
    margin-bottom: 10px;
    font-family: poppins;
}

#author {
    font-size: 24px;
}

.button-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    position: relative;
    top: 30px;
}

button, #tweet-btn {
    padding: 10px 20px;
    font-size: 26px;
    cursor: pointer;
    border: none;
    border-radius: 30px;
}

button {
    background-color: #61dafb;
    color: #282c34;
}

#tweet-btn {
    text-decoration: none;
    color: #282c34;
    background-color: #61dafb;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #61dafb;
    position: fixed;
    bottom: 0;
    width: 100%;
}
