* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #00081f;
  color: white;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased; /* WebKit (Chrome, Safari) */
  -moz-osx-font-smoothing: grayscale; /* macOS / Firefox */
  text-rendering: optimizeLegibility; /* Better kerning */
}

body,
input,
textarea,
button {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
a {
  font-weight: 300;
  text-decoration: none;
}

h1,
h2 {
  text-transform: capitalize;
}

a {
  color: white;
  font-weight: inherit;
  transition: color 150ms ease;
}

a:hover,
a:active {
  color: #bada55;
}

label {
  font-size: 16px;
  font-weight: 300;
}

input,
textarea {
  width: 100%;
  outline: none;
  padding: 10px 0;
  font-size: 18px !important;
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid white;
  margin-bottom: 20px;
  color: white;
  font-weight: 300;
  box-sizing: border-box;
  margin-top: 12px;
  letter-spacing: 0.05em;
}

input::placeholder,
textarea::placeholder {
  display: none;
  opacity: 0;
}

button {
  background: none;
  color: white;
  border: 1px solid white;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 300ms ease;
  width: 100%;
}

button:hover,
button:active {
  background-color: white;
  color: black;
  font-weight: 340;
}

input:focus,
textarea:focus-within {
  border-color: #bada55;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 300ms ease-in-out;
}
