* {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    background-color: #000000;
    color: white;
}

textarea {
    padding: 8px;
    border-radius: 10px;
    border: 1px solid #000000;
    background-color: #222222;
    width: 96.5%;
    height: auto;
    max-height: 400px;
    resize: none;
    overflow-y: hidden;
    outline: none;
}

a {
    background-color: #161616;
    color: rgb(250, 65, 65);
}

.btnColor {
    border: 1px solid #FCBE0E;
    background-color: #FCBE0E;
    color: white;
}

.btnColor:hover {
    border: 1px solid #fab802;
    background-color: #fab802;
}

.btn {
    font-weight: 300;
    width: 100%;
    padding: 8px;
    border-radius: 10px;
    transition: 0.1s ease-in-out;
}

.btn:hover {
    position: relative;
    cursor: pointer;
    transition: 0.1s ease-in-out;
}

.btn:active {
    position: relative;
    top: 2px;
    transition: all;
}

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 98vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contentHolder {
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
}

.output {
    color: white;
    margin-top: 20px;
    border: 0;
    padding: 20px;
    border-radius: 10px;
    background-color: #161616;
}

.hidden {
    display: none;
}