html, body {
    height: 100%;
    width: 100%;
    background: #2A7B9B;
    background: linear-gradient(0deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(237, 221, 83, 1) 100%);
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
    margin: 0;
}

#container {
    margin-top: 50px;
    background-color: black;
    width: fit-content;
    height: fit-content;
    display: flex;
    justify-self: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 15px;
    border-style: solid;
    border-radius: 15px;
}
* {
    margin-bottom: 10px;
}

textarea {
    field-sizing: content;
}

#crForm {
    text-align: left;
}

.bar {
  	min-width: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    justify-self: center;
    width: 90%;
    height: 10vh;
    border-style: solid;
    border-color: white;
    background-color: black;
    margin: 5px;
    padding: 5px;
}

.bar > h1 {
    margin-top: 10px;
}

.bar > div {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#small {
	width: 25%;
  	height: 5vh;
  	padding-top: 0;
}

a {
    color: lightgray;
}

a:hover {
    color: lightslategray;
}

h3 {
    margin-top: 0;
}

@media only screen and (max-device-width: 768px) {
    #bar {
        flex-direction: column;
        height: fit-content;
      	text-align: center;
    }
    #container {
        margin-top: 20px;
    }
  	h1 {
  		font-size: 24px;
  	}
}

#logout {
    padding: 5px;
    background-color: black;
    border-style: solid;
    border-color: transparent;
    border-radius: 15px;
}

input[type=text] {
    width: 70%;
}

input[type=submit], button {
    width: 50%;
    height: 36px;
}

.len {
    width: 90% !important;
}

input, button {
    background-color: darkslategray;
    color: white;
}

#reverse {
    display: flex;
}