textarea {
    width: 100%;
    height: 150px;
    margin: 10px 0;
    padding: 10px;
    font-size: 14px;
    resize: none;
}

label {
    font-weight: bold;
}

.controls {
    margin: 10px 0;
}

button {
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
}

.output {
    margin-top: 20px;
}

.presets {
    margin: 10px 0;
}

body {
    text-align: center;
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 20px;
    font-size: 120%;
}

h1 {
    font-size: 9vh;
}

.text-wrap {
    position: relative;
    background-color: #eee;
    padding: 1em;
}

textarea {
    width: 99%;
    margin: 10px 0;
    padding: 10px;
    font-size: 14px;
}

.clipboard.icon {
    position: absolute;
    top: 3em;
    right: 2.1em;
    margin-top: 4px;
    margin-left: 4px;
    width: 12px;
    height: 17px;
    border: solid 1px #333333;
    border-top: none;
    border-radius: 2px;
    cursor: pointer;
    background-color: #f0f0f0;
}

.clipboard.icon:before {
    top: -1px;
    left: 2px;
    width: 5px;
    height: 1px;
    border: solid 1px #333333;
    border-radius: 1px;
}

.clipboard.icon:after {
    width: 3px;
    height: 1px;
    background-color: #333333;
    box-shadow: 8px 0 0 0 #333333;
}

.icon:before,
.icon:after {
    content: '';
    position: absolute;
    display: block;
}

button {
    appearance: none;
    background-color: #2ea44f;
    border: 1px solid rgba(27, 31, 35, .15);
    border-radius: 6px;
    box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    padding: 6px 16px;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    white-space: nowrap;
}

button:focus:not(:focus-visible):not(.focus-visible) {
    box-shadow: none;
    outline: none;
}

button:hover {
    background-color: #2c974b;
}

button:focus {
    box-shadow: rgba(46, 164, 79, .4) 0 0 0 3px;
    outline: none;
}

button:disabled {
    background-color: #94d3a2;
    border-color: rgba(27, 31, 35, .1);
    color: rgba(255, 255, 255, .8);
    cursor: default;
}

button:active {
    background-color: #1dbe4b;
    box-shadow: rgba(20, 70, 32, .2) 0 1px 0 inset;
}

.topnav {
    overflow: hidden;
    background-color: #333;
    position: fixed;
    /* Fixes the nav to the top */
    top: 10px;
    /* Positions it at the very top of the page */
    width: 98%;
    /* Makes it span the entire width */
    z-index: 1000;
    /* Ensures it stays above other elements */
}

.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav a.active {
    background-color: #04AA6D;
    color: white;
}

#credits1 {
    font-size: 83%;
    float: right;
    padding-right: 10px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    margin: 8px;
}

.column {
    float: left;
    width: 33.3%;
    margin-bottom: 16px;
    padding: 0 8px;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

.container::after,
.row::after {
    content: "";
    clear: both;
    display: table;
}

@media screen and (max-width: 650px) {
    .column {
        width: 100%;
        display: block;
    }
}
.title {
    color: grey;
  }
  .about-section {
    padding: 50px;
    text-align: center;
    background-color: #474e5d;
    color: white;
  }