* {
  pointer-events: auto;
}

header {
  box-sizing: border-box;
  width: 100%;
  background-color: rgb(23, 111, 193);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  flex-grow: 0;

}


html,
body,
footer {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

footer {
  color: white;
  margin: 0;
  flex-shrink: 0;
}

footer ul {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #222;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

main {
  position: relative;
  /*top: 50px;*/
  flex: 1;
  display: flex;
  flex-direction: column;
}

ul {
  list-style-type: none;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.6);
  padding: 50px 0 50px 0;
}

.container p {
  font-size: 1rem;
  padding: 10px;
}

.container form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.container label {
  width: 100%;
  font-size: 1rem;
}

.container select.eventinput {
  width: 100%;
  max-width: 300px;
  font-size: 1rem;
}

.containertop {
  margin-top: 150px;
  justify-content: space-evenly;
  align-items: unset;
}

.centered-table {
    margin: 0 auto;
    background-color: white;
    width: 100%;
}

.centered-table td {
    padding: 2px;
    text-align: center;
    width: 80%;
    height: 50px;
    padding-bottom: 10px;
}

.centered-table input {
  width: 60%;
  border: 1.5px solid black;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0px 12px 18px -6px rgba(0, 0, 0, 0.3);
}

.footerbar {
  box-sizing: border-box;
  color: white;
  background: linear-gradient(to bottom right, #44ECC6, #6160B1, #E0236F);
  padding: 5px;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding-left: 50px;
  padding-right: 50px;
  flex-shrink: 0;
  text-align: center;
  margin-bottom: 0;
}

.footerimg {
  max-height: 25px;
}

.grecaptchastyle {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  top: 0;
  background-color: white;
  z-index: 1;
  box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.6);
}

.headerlogo {
  max-height: 150px;
  display: flex;
  justify-content: center;
}

.navbar-items {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 500px;
  padding: 0;
  margin: 0;
}

.navitem {
  flex: 1;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  background-color: rgb(255, 255, 255);
  color: #000000;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.4s ease;
  cursor: pointer;
  min-width: 100px;
}

.navitem:hover {
  background: linear-gradient(to right, #44ECC6, #6160B1, #E0236F);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transform: scale(1.08);
}

.social {
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  justify-content: space-evenly;
}

.social li {
  padding: 5px;
}

#footerleftside {
  text-align: left;
}

#footerrightside {
  text-align: right;
}