*{
    box-sizing: border-box;
    margin: 0;
}
body{
    background-color: rgb(39, 39, 39);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.Quote{
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-align: center;
    color: #ce6666;
}
.random-quote {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#quote-text {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

#quote-author {
    font-size: 1.1rem;
    font-weight: bold;
    opacity: 0.8;
}

.Quote button {
    width: 180px;
    height: 50px;
    border: 2px solid #ce6666;
    background-color: transparent;
    color: #ce6666;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all .3s ease;
}

.Quote button:hover {
    background-color: #ce6666;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(206, 102, 102, 0.4);
}

.Quote button:active {
    transform: translateY(-1px);
}
