body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

}

.quotes-generator {
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2em;
    color: #333333;
    margin-bottom: 20px;
}

.quotes-box {
    background-color: #63eeee;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#quote{
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #115ea5;
}

#author{
    font-size: 1.2em;
    color: #064366;
    font-style: italic;
}

button{
    background-color: #025a1f;
    color: white;
    font-size: 1em;
    padding: 12px 24px;
    border:none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover{
    background-color: #00240c;
}