html {
  margin: 0px;
  padding: 0px;
}

body {
  background-color: #041027;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  color: white;

  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background-color: #2b4056;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.toast.show {
  opacity: 1;
}

@keyframes fadeInOut {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter_black.ttf') format('truetype');
  font-weight: 900;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter_extra_bold.ttf') format('truetype');
  font-weight: 800;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter_bold.ttf') format('truetype');
  font-weight: 700;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter_semibold.ttf') format('truetype');
  font-weight: 600;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter_medium.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter_regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter_light.ttf') format('truetype');
  font-weight: 300;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter_extra_light.ttf') format('truetype');
  font-weight: 200;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter_thin.ttf') format('truetype');
  font-weight: 100;
}

