@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  position: relative;
  min-height: 100%;
  margin: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  margin-top: 0px;
  box-sizing: border-box;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #003476;
  color: #ffffff;
  height: 20%;
}

.logoContainer {
  max-height: 131px;
}

.logoContainer img {
  height: 130px;
}

.content {
  display: flex;
  flex-direction: column;
  height: 100%;

  align-content: space-between;
  padding-bottom: 70px;
}

.optionList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  height: 90%;
  margin-top: 5%;
  flex-grow: 0;
  flex-shrink: 1;
}

/* FLEX ITEM */
.optionContainer {
  background-color: #285999;
  color: #ffffff;
  padding: 20px;
  margin: 20px;
  width: 500px;
  max-height: 180px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  flex-grow: 0;
  text-align: center;
}

.optionHeader {
  font-size: 2rem;
}

.optionButton {
  background-color: #ffffff;
  border-color: #ffffff;
  border-width: 2px;
  border-style: solid;
  color: #003476;
  font-size: 1.5rem;
  text-decoration: none;
  padding: 5px 15px;
  margin: 5px;
  white-space: nowrap;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

.optionButton:hover {
  background-color: #ffffff;
  background-color: #008aff;
  color: #ffffff;
  text-decoration:none;
}

.stickyFooterContainer {
  position: absolute; /* for it to disappear under last body element */
  bottom: 0;
  height: 32px;
  /* width: 100%; */
}

/* FLEX ITEM */
.footer {
  display: flex;
  justify-content: space-evenly;
  align-items: center;

  /* background-color: #285999; */
  border-top-color: rgb(221, 221, 221);
  border-top-width: 2px;
  border-top-style: solid;

  padding-top: 10px;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 10px;
  /* background-color: bisque; */
  color: #003476;
  /* margin-top: 100px; */
  height: 50px;
  width: 100%;
  /* width: 100%; */
  position: absolute;
  bottom: 0;
  box-sizing: border-box;
}

.footer-element {
  padding: 5px;
}
