.container {
    max-width: 1920px;
    padding: 0 15px;
    margin: 0 auto;
    background: antiquewhite;
}

.app-form {
    width: 600px;
    margin: 0 auto;
    padding: 15px;
    border: 1px #615953 solid;
    border-radius: 10px;
    background: #F1A500;
}

select {
    min-width: 280px;
    width: 100%;
}

textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    min-height: 100px;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: antiquewhite;
}

.wrapper.top-offset {
    align-items: flex-start;
    padding-top: 50px;
    padding-bottom: 50px;
}

.pure-control-group {
    margin-top: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

@media (min-width: 500px) {
    .pure-control-group {
        flex-wrap: nowrap;
        gap: 20px;
    }
}

label {
    min-width: 100px;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.my-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.buttons {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

.button-primary {
    background: orangered;
    font-size: 1.4em;
    padding: 0.7em 5.6em;
    cursor: pointer;
    border-radius: 0.5em;
}

.button-secondary {
    font-size: 1.4em;
    padding: 0.7em 1em;
    cursor: pointer;
    border-radius: 0.5em;
}

#userInput {
    width: 100%;
}

h1 {
    font-size: 1.7em;
    margin: .67em 0;
}

@media (min-width: 500px) {
    h1 {
        font-size: 2em;
    }
}