:root {
    
    --primary-100:#FFD369;
    --primary-200:#EEEEEE;
    --primary-300:#fdf6fd;
    --accent-100:#cfdbd5;
    --accent-200:#e8eddf;
    --text-100:#EEEEEE;
    --text-200:#FDEBED;
    --bg-100:#222831;
    --bg-200:#393E46;
    --bg-300:#292524;

    --width:700px;
      
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');

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

html {
    height: 100%;
}

body{
    width: 100%;
    height: 100%;
    background-color: var(--bg-100);
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#app{
    width: var(--width);
}

.app__title{
    text-align: center;
    color: var(--text-100);
    font-size: 20px;
}
.app__area{
    width: 100%;
    height: 100px;
    margin: 15px 0;
    padding: 10px;
    resize: none;
    border-radius: 5px;
    background-color: var(--bg-200);
    border: none;
    outline: none;
    font-size: 20px;
    color: var(--text-200);
}
.choices-container{
    width:var(--width);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.choice{
    width: max-content;
    background-color: var(--bg-300);
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--text-100);
    transition: .5s;
}
.choice-active{
    background-color: var(--accent-100);
}

/* winner choice */
.winner-choice{
    background-color: var(--primary-100);
    color: var(--bg-100);

}
@media (max-width:700px){
        body{
            --width:90%
        }
        .app__title{
            font-size: 15px;
        }
}