body {
    display: flex;
    background-color: black;
}

p {
    color: white;
    margin: 1%;
    margin-left: 0%;
}

#container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#navBar {
    width: 100%;
    display: block;
    display: flex;
    flex-direction: row;
    justify-content:space-evenly;
}

#navbarElement {
    padding: 1%;
    border-style:dotted;
    border-radius: 5%;
    border-color: rgb(75, 255, 90);
    color: rgb(75, 255, 90);
}

a:link {
    text-decoration: none;
}
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}


#fieldsetContainer {
    display: flex;
    justify-content: center;
}
fieldset {
    margin-top: 5%;
    width: 30%;
    min-width: 500px;
    display: flex;
    flex-direction: column;
    justify-items: center;
}
legend {
    color: white;
}


textarea {
    min-height: 170px;
    resize: vertical;
}

#keyAlert {
    margin-top: 0%;
    margin-bottom: 2%;
}

.key {
    max-width: 30%;
    margin-bottom: 1%;
}
#output {
    background-color: rgb(151, 151, 151);
}

button {
    margin: 3%;
}

hr {
    width: 100%;
    margin-top: 5%;
}