* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Quicksand', sans-serif;
}

.navBar {
  background-color: #360763;
  height: 5rem;
  display: flex;
  align-items: center;
  width: 100%;
}

.navBar div {
  display: flex;
  align-items: center;
  margin: 10px;
  width: 100%;
  justify-content: space-around;
}

.navBar img {
  height: 4rem;
}

.navBar ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.menuBar ul {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

ul li a {
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: ghostwhite;
  text-decoration: none;
}

ul li a:hover {
  color: deeppink;
}

.buttonLogin{
  outline: none;
  text-align: center;
  border-radius: 40px;
  background-color: transparent;
  border: 2px solid deeppink;
  color: deeppink;
  letter-spacing: 1px;
  text-shadow: none;
  cursor: pointer;
  transition: all 0.25s ease;
  height: 30px;
  width: 100px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 900;
  margin-left: -360px;
}
.buttonLogin:hover {
  background: deeppink;
}

.buttonLogin a {
  color: ghostwhite;
  text-decoration: none;
}

.buttonLogin:hover a:hover {
  color: white;
}
.buttonContact {
  outline: none;
  text-align: center;
  border-radius: 40px;
  background-color: transparent;
  border: 2px solid deeppink;
  color: deeppink;
  letter-spacing: 1px;
  text-shadow: none;
  cursor: pointer;
  transition: all 0.25s ease;
  height: 30px;
  width: 100px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 900;
}

.buttonContact:hover {
  background: deeppink;
}

.buttonContact a {
  color: ghostwhite;
  text-decoration: none;
}

.buttonContact:hover a:hover {
  color: white;
}


#boxEmail {
  background-color: #360763;
  display: flex;
  justify-content: center;
  height: 350px;
  width: 100%;
  align-items: center;
  flex-direction: column;
  margin-top: 10px;
  margin: 0 auto;
}

.boxItems {
  display: flex;
  justify-content: center;
  height: 300px;
  align-items: center;
  flex-direction: column;
  margin: 20px;
  width: 70%;
}

.boxItems h1 {
  color: #fff;
  font-weight: 800;
  font-size: 2.8em;
  padding: 0.3em 0 0.3em;
  letter-spacing: -0.06em;
  text-transform: lowercase;
}

.boxItems p {
  color: #fff;
  line-height: 1.618em;
  font-size: 1.1em;
  font-weight: 300;
}

.boxItems img {
  height: 100px;
}

.inputBox {
  padding: 2em 0 0;
}

.inputBox input[type="email"] {
  font-size: 1em;
  border: 2px solid #fff;
  color: black;
  width: 500px;
  padding: 15px 20px;
  border-radius: 200px;
  margin-right: 10px;
}

.inputBox input[type="button"] {
  font-size: 1em;
  background: #202633;
  border: 2px solid #202633;
  color: #fff;
  padding: 16px 30px;
  border-radius: 200px;
  text-transform: uppercase;
  cursor: pointer;
}

.inputBox input[type="button"]:hover {
  background: #fff;
  color: black;
  transform: scale(1.1);
  border: none;
}

@media (max-width: 1199px) {
  .navBar {
    height: 7rem;
  }
  
  .navBar div {
    margin: 15px;
  }

  .boxItems h1 {
    font-size: 2.5em;
  }

  .inputBox input[type="email"] {
    width: 400px;
  }

}
@media (max-width: 1440px) {
  .buttonLogin{
    margin-left: -250px;
  }
  }
  
@media (max-width: 1024px) {
  .buttonLogin{
    margin-left: -115px;
  }
  }

@media (max-width: 768px) {
  .navBar {
    height: 10rem;
  }

  .navBar div {
    margin: 10px;
    flex-direction: column;
    gap: 0.8em;
  }


  .boxItems h1 {
    font-size: 2em;
  }

  .boxItems img {
    height: 60px;
  }

  .boxItems p {
    font-size: 1em;
  }

  .inputBox input[type="email"] {
    width: 160px;
  }

  .inputBox input[type="button"] {
    font-size: 10px;
    width: 70px;
    padding: 10px 10px;
  }
  .buttonContact{
    margin-right: 120px;
  }
  .buttonLogin{
    position: absolute;
    top: 124px;
    right: 280px;
  }
}
@media (max-width: 425px) {
  .buttonLogin{
    right: 100px;
  }
}

@media (max-width: 375px) {
  .buttonLogin{
    right: 80px;
  }
}

@media (max-width: 320px) {
  .buttonLogin{
    right: 60px;
  }
}