*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(215, 78, 215, 0.322);
    gap: 10px;
}
.quote-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 500px;
    height: 400px;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgb(180, 179, 179), -2px -2px 5px rgb(180, 179, 179);
    gap: 10px;
}

h1{
    margin-top: 10px;
    font-size: 2.5rem;
    font-weight: 900;
}

p {
    font-size: 1.4em;
}
#quote {
    font-family:  cursive;
    padding: 10px;
    text-align: center;
    width: 300px;
}

button{
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    color: white;
    margin-top: 10px;
}
button:hover {
    cursor: pointer;
}

#generate-quote-btn{
    background-color: rgb(69, 125, 237);
}

.mood{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#happy-quote-btn{
    background-color: #F9C74F;
}

#sad-quote-btn{
    background-color: #095fab;
}
#motivated-quote-btn{
    background-color: #F94144;
}

