@font-face {
  font-family: Vollkorn;
  src: url('/static/fonts/Vollkorn-Regular.ttf');
}

@font-face {
  font-family: Nunito;
  src: url('/static/fonts/Nunito-Regular.ttf');
}

@font-face {
  font-family: Dancing Script;
  src: url('/static/fonts/DancingScript-Regular.ttf');
}

html, body {
  margin: 0;
  padding: 0;

  height: 100%;
}

body {
  width: 90%;
  margin: 0 auto;

  background-color: #020617; /*#0f172a*/
  color: #cbd5e1; /*#f1f5f9*/

  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  line-height: 1.25;
  text-align: center;
}

nav {
  align-items: center;
  background-color: #020617;
  display: flex;
  justify-content: space-between;
}

nav>ul>a {
  display: inline-block;
  font-size: 16px;
  padding: 24px;
  width: 95px;
}

nav li {
  list-style-type: none;
  padding: 0;
  text-align: center;
}

nav>ul>a:hover {
  text-decoration: none;
}

.logo {
  font-family: 'Dancing Script';
  font-size: 30px;
}

.logo:hover {
  text-decoration: none;
}

nav a {
  color: #cbd5e1;
}

body {
  max-width: 600px;
}

ul {
  list-style-position: inside;
}

nav a:hover {
  color: #64748b;
}

a {
  color: #64748b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

h1 {
  font-family: 'Vollkorn', serif;
  font-size: 48px;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.circle {
  font-size: 16px;
  margin: 0 4px;
}

h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 30px;
  margin-top: 32px;
  margin-bottom: 6px;
}

h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 26px;
  margin-top: 28px;
  margin-bottom: 6px;
}

p {
  margin-bottom: 12px;
}

li {
  list-style-type: disc;
  padding: 8px;
  text-align: start;
}

.main {
  height: 100%;
  animation: enter 0.5s;
}

@keyframes enter {
  from {
    margin-top: 36px;
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.code-form {
  font-family: 'Dancing Script';
  font-size: 48px;
  height: 100vh;
}

.code-form form {
  display: flex;
  flex-direction: column;

  height: 100vh;

  align-items: center;
  justify-content: center;
  row-gap: 32px;
  
}

input {
  font-family: 'Nunito';
  font-size: 20px;
  padding: 12px;
  text-align: center;
}

button {
  background-color: white;
  border-radius: 4px;
  color: #020617;
  font-family: 'Nunito';
  font-size: 28px;
  padding: 12px 48px;
}

button:hover {
  background-color: #cbd5e1;
  cursor: pointer;
}
