body{
    margin: 0;
    background-color: #282828;
    color: wheat;
}
h1{
    margin-top: 0;
    text-align: center;
}
p {
    text-align: center;
}
a{
    color: rgb(195 159 51);
}
span{
    color: #7d7d81;
}
input, textarea, #cyphered, button{
    border: 2px solid #a39986;
    background-color: #696969;
    color:#d9d6d0;
    padding: 0.5rem;
    border-radius: 5px;
    resize: none;
}
button{
    cursor: pointer;
    border-color: #2b2822;
    color: #d9d6d0;
}
button:hover{
    filter:invert();
}
::placeholder {
    color: rgb(173, 173, 173);
    opacity: 1; /* Firefox */
  }
#container{
    width: 100%;
    max-width: 950px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: auto;
    margin-top: 3rem;
    padding: 1rem;
    box-sizing: border-box;
    background-color: #424242;
    border: 2px solid #161410;
}
#container > * {
    width: -webkit-fill-available;
    display: flex;
    flex-wrap: wrap;
}
#text{
    min-height: 3rem;
    text-align: start;
    padding: 1rem;
}
#cyphered{
    min-height: 3rem;
    padding: 1rem;
    word-break: break-all;
}
.invert:hover{
    filter:invert();
    cursor: pointer;
}
.redBorder{
    border-color: red !important;
}
.orangeBorder{
    border-color: orange !important;
}
.gap{
    display: flex;
    gap: 0.5rem;
}
.between{
    justify-content: space-between;
}
#output{
    color: #7d7d81;
}
.gray{
    color: #7d7d81;
}
.w500{
    max-width: 500px;
    margin: auto;
}
.fill{
    max-width: -webkit-fill-available;
}
.round{
    border-radius: 6px;
}
#icon{
    text-align: center;
    margin-top: 2rem;
}
.mt{
    margin-top: 2rem;
}
.column{
    display: flex;
    flex-direction: column;
}
#menu{
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #2d2c2a;
}
.hidden{
    display: none !important;
}