html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: #d6d8dd;
    font-family: 'Open Sans';
}

button {
    background: none;
    background-color: #161616;
    outline: 0;
    border: 2px solid #d6d8dd;
    border-radius: 5px;
    margin: 0;
    padding: 8px 16px;
    color: #d6d8dd;
    font-size: 1.2em;
    cursor: pointer;
}

button:hover {
    color: #fff;
    background-color: #222;
}

.invisible {
    visibility: hidden;
}

.page-contents {
    width: 640px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.type-selector-list {
    display: flex;
    flex-direction: column;
    font-size: 1.4em;
    font-weight: bold;
}

.type-selector {
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 8px;
}

.type-selector:hover {
    color: #fff;
}

.type-selector.selected {
    background-color: #5f636c;
}

.type-title-container {
    width: 100%;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    align-self: center;
}

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

.type-message {
    padding: 20px 0;
    width: 100%;
}

.generate-button-container {
    margin-top: 40px;
}

.jargon-output-container {
    width: 100%;
    height: 120px;
    margin-top: 20px;
    background-color: #222;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jargon-output {
    margin: 0 20px;
    text-align: center;
    color: #ffc758;
    font-size: 1.3em;
}

.copy-button-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.copied-message {
    height: 20px;
    margin-top: 2px;
    text-align: center;
    font-size: 0.8em;
}

.footer {
    color: #666;
    font-size: 0.8em;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding-bottom: 4px;
}

.copymachine {
    position: fixed;
    top: -200px;
    left: -200px;
}