* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #FF0402;
    font-family: 'Roboto', sans-serif;
}

html {
    overflow: hidden;
}

body {
    padding-inline: 16px;
    padding-block: 1rem;
}

.container {
    display: grid;
    height: 100%;
    margin-inline: 1rem;
    padding-inline: 2rem;
    border: 2px solid #FFC35A;
}

.container > * {
    justify-self: center;
    align-self: center;
}

.quoteContainer {
    display: grid;
}

.quoteContainer > * {
    justify-self: center;
    align-self: center;
}

.quote {
    font-size: 2rem;
    color: #fff;
    font-weight: 900;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s cubic-bezier(0,.16,.25,.99) 1s forwards;
}

.refreshQuote {
    background: transparent;
    border: 2px solid #FFC35A;
    font-family: inherit;
    font-weight: 300;
    font-size: 1.2rem;
    padding-inline: 1rem;
    padding-block: .8rem;
    color: #fff;
    opacity: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .8rem;
    animation: fadeIn 1s cubic-bezier(0,.16,.25,.99) 1.5s forwards;
}

.refreshQuote > svg {
    width: 18px;
    height: 18px;
    animation: rotate 1s linear 2.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}