body {
    margin: 0;
    background-color: #333;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.top {
    width: 100%;
    height: 50px;
    background-color: #222;
    color: white;
    display: flex;
    align-items: center;
}

.top>* {
    margin-left: 25px !important;
}

h1 {
    margin: 0;
}

.container {
    width: 100%;
    height: calc(100vh - 50px);
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    padding: 10px;
    background-color: #222;
    color: white;
    border-radius: 12px;
}

.ml {
    margin-left: 20px;
}

textarea {
    background-color: #333;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    resize: none;
    width:100%;
    height:200px;
    min-width: 500px;
}

.btncontainer {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

#generate {
    background-color: #333;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 5px 10px;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
}

select {
    background-color: #333;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}