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

* {
    box-sizing: border-box;
}

body {
    background-color: #394eef;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

h3{
    margin: 10px 0 20px;
}

.container {
    width: 500px;
}

textarea {
    border: none;
    display: block;
    resize: none;
    width: 100%;
    height: 100px;
    font-family: inherit;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    margin: 0 0 20px;
}
textarea:focus{
    outline: none;
}

.choices{
    margin: 14px;
}
.choice {
    background-color: #e7b52a;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    margin: 0 5px 10px 0;
    border-radius: 50px;
    display: inline-block;
}
.choice.picked{
    background-color: #010156;
    color: #fff;
}