@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../assets/fonts/Inter/Inter.ttf") format("truetype");
  src: url("../assets/fonts/Inter/Inter.woff") format("woff");
  src: url("../assets/fonts/Inter/Inter.woff2") format("woff2");
  font-display: swap;
}

body {
  margin: 0;
  padding: 0;
  background-color: #3d3d3d;
  color: white;
  font-family: "Inter", sans-serif;
  width: 100%;
}

nav {
  margin: 1em;
  padding: 0.3em;
  text-align: center;
}

nav a {
  text-decoration: none;
  color: white;
}

nav a:hover {
  color: white;
  text-decoration: underline;
}

nav #NSSLogo {
  background-color: white;
  border-radius: 50%;
}

nav .logo {
  margin: 10px;
  width: auto;
  height: 6em;
}

nav .logoContainer {
  margin-bottom: 0.2em;
  padding: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.app {
  margin-left: auto;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.app #notSuccessCard {
  display: none;
  margin: 20px;
}

.red {
  color: red;
}

.btn {
  text-transform: uppercase;
}
/*# sourceMappingURL=main.css.map */