* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #1D1D1D;
  color: #ffffff;
}

#site_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; 
}


header a {
  text-decoration: none;
}

header {
  padding: 0 20px;
  height: 50px;
  display: flex;
  justify-content: space-between;
}

#brand {
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  font-size: 31px;
  font-weight: bold;
  padding-left: 50px;
}

#brand a {
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
}

#brand a:hover {
  color: #F49384;
  transition: 0.5s;
}

ul {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-family: 'Questrial', sans-serif;
}

ul a {
  color: #ffffff;
}

ul a:hover {
  color: #F49384;
  transition: 0.5s;
}

ul li {
  padding-right: 80px;
  margin-left: 10px;
}





footer {
  position: flex;
  font-family: 'Questrial', sans-serif;
  bottom: 0;
  left: 0;
  color: #fff;
  text-align: left;
}

footer p {
  font-size: 12px;
  padding-left: 55px;
}



#hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
  z-index: 1;
}

#hamburger-icon div{
  width: 35px;
  height: 3px;
  background-color: white;
  margin: 6px 0;
  transition: 0.4s;
}

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}

.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.mobile-menu {
  display: none;
  background-color: #262626;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  font-family: 'Oswald', sans-serif;
  z-index: -1;
}

.mobile-menu li {
  margin-top: 40px;
  font-size: 30px;
}

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center; 
  height: 1800px;
  text-align: center; 
  background-color: #262626;
  width: 90%;
  margin-top: 20px;
}

.red-box {
  background-color: #EB7969;
  width: 851px;
  height: 283px;
}

h1 {
  margin: 0 auto;
  font-family: 'Oswald', sans-serif;
  color: #EB7969;
  font-size: 55px;
  font-weight: 700;
  font-style: normal;
  margin-top: 120px;
}

h3 {
  margin: 0 auto;
  font-family: 'Oswald', sans-serif;
  color: #EB7969;
  font-size: 28px;
  font-weight: 700;
}

p {
  font-family: 'Questrial', sans-serif;
  font-size: 18px;
  margin: 10px;
}

.red-box h3 {
  color: black;
  font-size: 31px;
  padding-top: 30px;
}

.main-container a {
  color: #ffffff;
}

.red-box p {
  color: black;
  font-size: 15px;
}

input::placeholder {
  font-family: 'Questrial', sans-serif;
  font-size: 18px;
  margin: 10px;
  color: black;
  opacity: 0.4;
}

.overall-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center horizontally */
  justify-content: center; /* Center vertically */
  height: 100vh; /* To make sure it takes the full viewport height */
  text-align: center; /* To center text within the container */
}

input {
  border: none;
  border-bottom: 1px solid #ffffff;
  background: transparent;
  outline: none;
  width: 500px;
  margin-right: 30px;
  margin-left: 30px;
}

button {
  background-color: black;
  color: white;
  border: none;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: 'Questrial', sans-serif;
  font-size: 16px;
}

.email-container {
  margin-top: 80px;
  display: flex;
  align-items: flex-start;
}




@media (max-width: 768px) {

  header nav {
    display: none;
  }

  #hamburger-icon {
    display: block;
    padding-right: 50px;
  }

  .overall-container {
    width: 100%;
    box-sizing: border-box; 
  }

  .main-container {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .red-box, .email-container {
    width: 100%;
    box-sizing: border-box; 
  }

  .red-box {
    height: 350px;
  }
  

  .email-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  input {
    width: 60%;
    margin: 0 auto;
    margin-bottom: 10px;
    margin-top: -50px;
  }

  button {
    margin: 0 auto;
    width: 60%;
  }

}