* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(#0a3450, #06101c);
    color: #ebeaea;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

h1 {
    font-size: 4rem;
    text-align: center;
}

.show-quotes {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.show-quotes h2 {
    text-align: center;
    margin-bottom: 1rem;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.show-quotes p {
    font-size: 1.1rem;
    font-style: italic;
}

.author {
    color: #fff;
}

button {
    padding: 1rem;
    color: #fff;
    background-color: transparent;
    border: 2px solid #3fc5b9;
    letter-spacing: .1rem;
    cursor: pointer;
    transition: all ease .3s;
    border-radius: .5rem;
    font-size: 1rem;
}

button:hover {
    border: 2px solid #23a7d3;
}