@font-face {
  font-family: Karla;
  src: local("Karla Bold"), local("Karla-Bold"), url("../fonts/Karla/Karla-Bold-_zJixIA.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: Karla;
  src: local("Karla Bold Italic"), local("Karla-BoldItalic"), url("../fonts/Karla/Karla-BoldItalic-2dnOCxZ.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: Karla;
  src: local("Karla Italic"), local("Karla-Italic"), url("../fonts/Karla/Karla-Italic-oOXDY4l.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: Karla;
  src: local("Karla Regular"), local("Karla-Regular"), url("../fonts/Karla/Karla-Regular-xLVW3oR.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  margin: 0;
  background-color: #16497C;
  color: white;
  font-family: Karla, Arial, sans-serif;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.bg-main {
  background-color: #16497C;
}

.bg-secondary {
  background-color: grey;
}

.text-main {
  color: white;
}

.text-secondary {
  color: #16497C;
}

button {
  padding: 10px 40px;
  border: 0;
  border-radius: 20px;
  color: white;
  background-color: #16497C;
  cursor: pointer;
  transition: background-color 0.2s ease-out;
  font-weight: bold;
}
button:hover {
  background-color: #BC8B04;
}

.bigbutton {
  padding: 15px 50px;
  border-radius: 25px;
  font-size: medium;
}

a {
  color: white;
  font-weight: bold;
  transition: color 0.2s ease-out;
}
a:hover {
  color: #BC8B04;
}

.menu {
  position: absolute;
  display: none;
  flex-direction: column;
  border: 1px solid;
  z-index: 1000;
  background-color: #16497C;
}
.menu a {
  border: 1px solid;
}

#footer {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
#footer a {
  text-decoration: none;
}

#header {
  margin: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#header .navbar {
  margin: 20px;
}
#header .navbar a {
  padding: 15px;
  text-decoration: none;
}

.bigblock {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0;
}

.flex-row {
  flex-direction: row;
}

.flex-space-evenly {
  justify-content: space-evenly;
}

.block {
  text-align: center;
  padding: 15px;
  font-size: larger;
  margin: 20px;
  max-width: 700px;
  border-radius: 5px;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.shadow {
  box-shadow: 0 0 3px rgba(128, 128, 128, 0.3);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.card {
  margin: 10px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  max-width: 400px;
  text-align: center;
}

.bg-light {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
}

.card-title {
  padding: 10px;
}

.max-width-50 {
  max-width: 50vw;
}

.flash-container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.flash-container .flash {
  padding: 20px;
  margin: 10px;
}
.flash-container .flash.success {
  background-color: green;
}
.flash-container .flash.error {
  background-color: red;
}

form div {
  display: flex;
  flex-direction: column;
}
form div div {
  margin-bottom: 20px;
}
form div div input, form div div textarea, form div div select {
  padding: 10px;
}
form div div textarea {
  min-height: 100px;
  min-width: 300px;
  max-width: 100%;
}

.modal {
  display: none;
  z-index: 2000;
}
.modal .modal-back {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
}
.modal .modal-container {
  position: fixed;
  top: 50%;
  left: 50%;
  padding: 25px;
  background: #16497C;
  transform: translate(-50%, -50%);
  border: solid white;
  text-align: right;
}
.modal .modal-container #modal-close {
  text-decoration: none;
}
.modal .modal-container #modal-content {
  text-align: left;
}

/*# sourceMappingURL=base.output.css.map */
