:root {
    font-family: sans-serif;
    font-size: 16px;
    --mauve: #9d82c0;
    --pink: #f28291;
    --gradient: linear-gradient(90deg, var(--mauve) 0%, var(--pink) 100%);
}

body {
    margin: 0;
    padding: 0;
}

body.ai {
    margin: 0;
    padding: 0 1rem 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.footer {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    padding: 1rem 0 1rem 0;
}

#header {
    padding: 1rem 0 0 0;
    width: 100%;
}

body > .content {
    max-width: 568px;
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media(min-width: 600px){
    body > .content {
         width: 568px;
    }
}

.magic {
    background-image: var(--gradient);
    background-clip: text;
    color: transparent;
}

ai-input {
    width: 100%;
}

.toolbar {
    width: 100%;
    margin-bottom: .5rem;
}

message-list {
    width: 100%;
    margin-bottom: .5rem;
}