* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  margin: 0 auto;
}

header {
  width: 100%;
  height: 80px;

  margin: 0 auto;

  padding: 1em 0em;
}

nav {
  width: 90%;

  /* background-color: red; */
  margin: 0 auto;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  border-bottom: 1px solid rgb(238, 238, 238);
}

.logo img {
  width: 150px;
}

.list {
  /* width: 25%; */

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 1.5em;
  /* background-color: yellow; */
}

.list li {
  list-style-type: none;
}

.list li > a {
  text-decoration: none;
  text-transform: capitalize;

  font-family: "Raleway", sans-serif;
  font-weight: 600;

  color: rgb(255, 255, 255);

  transition: all 0.5s;
}

.list li > a:hover {
  /* text-transform: uppercase; */
  color: rgb(161, 0, 0);
}

main {
  width: 100%;
  height: 100vh;

  background: url(../img/open-uri20190808-19972-1cifqrb.jpg);

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  object-fit: cover;

  position: absolute;
  top: 0%;

  z-index: -1;
}

.innerMain {
  width: 100%;
  height: 100%;

  background-color: rgba(0, 0, 0, 0.271);

  padding: 5em 0em;
}

.bigText {
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  margin-top: 4em;
}

.bigText h1 {
  width: 100%;
  font-family: "poppins", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  /* font-size: clamp(1rem, 1.2vw, 1.2rem); */
  font-weight: 600;
  color: #fff;

  letter-spacing: 2rem;

  background-color: rgba(36, 9, 9, 0.681);
  text-align: center;
}

.bigText h2 {
  width: 100%;
  font-family: "poppins", sans-serif;
  /* font-size: clamp(2rem, 5vw, 5rem); */
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 600;
  color: #fff;

  letter-spacing: 2rem;

  background-color: rgba(36, 9, 9, 0.681);
  text-align: center;

  margin-top: 2em;
}
