@font-face {
  font-family: inter;
  src: url(./assets/fonts/inter/Inter-VariableFont_opsz\,wght.ttf);
}

@font-face {
  font-family: nunito;
  src: url(./assets/fonts/Nunito/Nunito-VariableFont_wght.ttf);
}

@font-face {
  font-family: zain;
  src: url(./assets/fonts/Zain/Zain-Bold.ttf);
}

* {
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: inter;
  min-height: 100vh;
}

/* * {
  outline: 1px solid red;  // Helps to see which elements overflow
} */

.material-symbols-outlined {
  font-size: 24px;
  color: #fff;
}

.header {
  position: fixed;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: rgb(17 15 26 / 81%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-bottom: 1px solid #1D1D20;
  height: 106px;
  z-index: 99;
  backdrop-filter: blur(6px);
}

.header-container {
  display: flex;
  max-width: 1300px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-right: 40px;
  padding-left: 40px;
}

#moonmoon-logo {
  height: 50px;
  width: 50px;
  margin-right: 25px;
  border-radius: 12px;
}

#moonmoon-name {
  height: 30px;
}

.container {
  max-width: 1024px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #14121D;
  padding-left: 20px;
  padding-right: 20px;
  height: 100px;
  width: 100%;
}

footer p {
  color: white;
}

.footer-contact {
  display: flex;
  gap: 15px;
}

button {
  font-family: inter;
  border: 0px;
  border-radius: 10px;
  height: 40px;
  background-color: white;
  color: #000;
}

input, textarea {
  font-family: inter;
  border: 1px solid #ced4da;
  border-radius: 5px;
  height: 40px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 16px;
}

input:focus-visible {
  outline: 0px;
  border: 1px solid #228be6;
}

textarea {
  height: 100px;
  padding-top: 10px;
}

textarea:focus-visible {
  outline: 0px;
  border: 1px solid #228be6;
}

@media (width <= 450px) {
  .header {
    height: 80px;
  }

  #moonmoon-logo {
    height: 45px;
    width: 45px;
  }
}