html, body {
  margin: 0;
  height: 90%;
}

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

#contentContainer {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

#logo {
  width: 200px;
  height: auto;
}

#linkContainer{
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button {
  display: flex;
  align-content: center;
  justify-content: center;
  margin: 10px;
  color: white;
  text-decoration: none;
  font-size: 16pt;
  background: #235a93;
  border-radius: 20px;
  padding: 10px 15px 10px 15px;
}

.button:hover {
  background: #22A7F0;
}

.dropdown {
  display: flex;
  flex-direction: column;
}

.dropdownContent {
  display: none;
  background-color: #f1f1f1cc;
  min-width: 160px;
  overflow: auto;
  border-radius: 10px;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.527);
  z-index: 1;
}

.dropdownContent a {
  text-decoration: none;
  padding: 10px;
}

.dropdown a:hover {background-color: #22A7F0;}

.show {
  display: flex;
  flex-direction: column;
}

.hide {display: none;}
