* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    background: linear-gradient(rgb(227, 199, 87), rgb(200, 92, 202));
    background-attachment: fixed;
    font-family: 'Roboto', sans-serif;
}

main {
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    margin: 0 auto;
    padding: 16px;
    width: 90%;
}

header img {
    width: 56px;
}

.panel {
    background-color: white;
    border-radius: 10px;
    padding: 16px 24px;
    width: 84%;
    margin-bottom: 24px;
}

.commands ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.commands ul li {
    font-size: 24px;
    margin-top: 16px;
    font-weight: bold;
}

h2 {
    font-size: 20px;
    margin-bottom: 16px;
}

h3 {
    color: rgb(63, 101, 170);
    margin-bottom: 16px;
    font-size: 16px;
}

button {
    border: none;
    background-color: rgb(200, 92, 202);
    
    width: 65px;
    height: 65px;
    border-radius: 50px;
    padding: 20px 16px;
    margin-bottom: 24px;
}

.codigotchi {
    position: relative;
    width: 230px;
    margin: 0 auto 23px auto;
}

.codigotchi-screen {
    position: absolute;
    width: 120px;
    top: 118px;
    left: 56px;
    height: 120px;
    background-image: url('imagens/static.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.codigotchi-screen_dance {
    background-image: url('imagens/dance.gif');
}

.codigotchi-screen_eat {
    background-image: url('imagens/eat.gif');
}

.codigotchi-screen_sleep {
    background-image: url('imagens/sleep.gif');
}

.panel-commands {
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 84%;
}

.talking .panel-microphone {
    visibility: hidden;
}

.talking .panel-commands {
    visibility: visible;
}

.panels {
    position: relative;
}

#transcript {
    color: white;
    font-weight: bold;
}