/*@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');*/
@font-face {
  font-family: Avantt;
  src: url(/font/Avantt-Regular.ttf);
}

body {
  display: flex;
  background-color: #312937;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  font-family: "Avantt", sans-serif;
  color: #FFFFFF;
  font-size: 1.2em;
}

.splash-container {
  text-align: center;
  margin: 5%;
}

img {
  width: 50%;
  height: auto;
  max-width: 250px;
}

h1 {
  color: #75BDE9;
  font-size: 1.5em;
  font-weight: 700;
  margin-top: 1em;
}

h2 {
  color: #312937;
  font-size: 1.3em;
  font-weight: 700;
}

p {
  font-size: 1em;
}

input[type=text] {
  font-size: 0.8em;
  width: 75%;
  padding: 12px 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

input[type=text]:focus {
  outline: #75BDE9 solid 2px;
}

button {
  font-size: 0.8em;
  width: 25%;
  background-color: #75BDE9;
  color: #312937;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  outline: #FFFFFF solid 2px;
}

a {
  font-size: 0.6em;
  color: #E3E3E3;
  cursor: pointer;
}

a:hover {
  color: #75BDE9;
}

.cursorpointer {
	cursor: pointer;
}

.error {
  color: #ff8800;
  font-size: 0.8em;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  color: #312937;
  background-color: #E3E3E3;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  height: 50%;
  width: 50%;
  min-width: 300px;
  max-width: 500px;
  padding: 20px;
  margin: 100px auto 0% auto;
}

.modaltext {
  font-size: 0.8em;
  font-weight: 400;
}

/* The Close Button */
.closeModal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.closeModal:hover,
.closeModal:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}