@font-face {
  font-family: 'OpenSans';
  src: url('/fonts/OpenSans-Regular.ttf') format('truetype'),
       url('/fonts/OpenSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  background-color: #111d1e;
  color: #e0e0e0;
  display: flex;
  justify-content: center; /* Centers the container horizontally */
  align-items: center; /* Centers the container vertically */
  flex-direction: column;
  font-size: 24px;
}

.container {
  max-width: 1000px;
}

a {
  color: #bb86fc;
  text-decoration: none;
}

a:hover {
  color: #3700b3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #ffffff;
  margin: 10px 0;
  font-size: 56px;
  text-align: center;
  font-family: "OpenSans";
}

input,
textarea,
select,
button {
  background-color: #333333;
  color: #e0e0e0;
  border: 1px solid #555555;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: none;
  border-color: #6200ea;
}

hr {
  border: 1px solid #444444;
}

img {
  filter: brightness(0.8);
}
