body,
html {
    padding: 0;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    height: 90%;
}

* {
    box-sizing: border-box
}

main {
    padding: 5rem 0;
    flex: 1 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

code {
    background: #fafafa;
    border-radius: 5px;
    padding: .75rem;
    font-family: Menlo, Monaco, Lucida Console, Courier New, monospace
}

button,
.button {
    background: #e9e9e9;
    border-radius: 8rem;
    border: 0px;
    padding: .75rem;
    font-family: Menlo, Monaco, Lucida Console, Courier New, monospace;
    transition-duration: 0.5s;
    color: black;
    margin: .2rem;
    margin-top: 0;
}

button:hover,
.button:hover {
    background: black;
    color: white;
    border: 0px;
    /* padding: .9rem; */
    transform: scale(.9);
    font-family: Menlo, Monaco, Lucida Console, Courier New, monospace;
    cursor: pointer;
}

button img {
    width: auto;
    height: 15px;
    margin: -3px;
}

input,
.input,
select {
    background: #fafafa;
    border-radius: 12px;
    border-width: .05rem;
    padding: .75rem;
    font-family: Menlo, Monaco, Lucida Console, Courier New, monospace;
    transition-duration: 0.5s;
    margin-bottom: .4rem;
    border: solid;
    border-color: #e4e4e4;

}

.search {
    background: #fafafa;
    border-radius: 5px;
    border-width: .05rem;
    padding: .75rem;
    font-family: Menlo, Monaco, Lucida Console, Courier New, monospace;
    transition-duration: 0.5s;
    margin-bottom: .4rem;
    border: solid;
    border-color: #e4e4e4;
    height: 80% !important;
}

input:hover,
.input:hover {
    border-width: .1rem;
    border: solid;
    border-color: #5eb0f7;
}

.output {
    background: #fafafa;
    border-radius: 12px;
    border-width: .05rem;
    padding: .75rem;
    font-family: Menlo, Monaco, Lucida Console, Courier New, monospace;
    transition-duration: 0.5s;
    margin-bottom: .4rem;
    border: solid;
    border-color: #e4e4e4;
    height: 30%;
}

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

.contain {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.contain>button {
    margin: 1px;
}

blue,
.blue {
    color: #5eb0f7;
    transition-duration: 0.5s;
}

blue:hover,
.blue:hover {
    font-size: 101%;
    background-color: #5eb0f7;
    color: white;
    border-radius: 8px;
    padding: 7px;
}

.title {
    font-size: 3em;
    font-weight: bold;
}



textarea {
    width: 80%;

}

#buttons {
    display: flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}



a {
    text-decoration: none;
    color: black;
}

a:hover {
    color: white
}