html{
  height: 100%;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 120%;
  background-color: #cce5c9;
  flex: auto;
  margin: 0;
  font-size: large;
}

footer {
  font-size: xx-small;
  align-self: center;
}

#content{
  align-self: center;

  a{
    color: darkgreen;
  }
  menu{
    color: darkgreen;
  }
}

#topbar{
  position: sticky;
  top: 0;
  background-color: green;
  width: 100%;
  height: 50px;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
}

.topbar_button_container{
  position: absolute;
  width: 100px;
  height: 80%;
  top: 10%;
  left: 20px;

  a{
    color: #cce5c9;
  }
}

.topbar_button{
  height: 100%;
  width: 100%;
  background-color: darkgreen;
  border-radius: 5px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.logo_container{
  flex: initial;
  align-self: center;
  height: 100%;
  display: flex;
}

.logo{
  flex:auto;
  align-self: center;
  font-size: 200%;
  color: #cce5c9;
  font-family: "Impact", sans-serif;
}

.content_container{
  align-self: center;
  flex: auto;
  background-color: whitesmoke;
  border-radius: 25px;
  width: 65%;
  padding: 3% 5% 7% 5%;
}

.displaybox{
  background-color: cornsilk;
  padding: 10px;
  margin: 10px;
  border-radius: 10px;
}

#authenticator_form{
  padding: 1%;
  border-style: solid;
  border-width: thin;
  width: max-content;
}

img{
  width: 1000px;
  max-width: 100%;
}

video{
  width: 1000px;
  max-width: 100%;
}

h1 {
  color: black;
}

h2 {
  font-size: larger;
}