/* Pallet
rgba(91, 91, 149, 1)
rgba(252, 235, 235, 1)
rgba(229, 185, 174, 1)
*/

/* Global Style */

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

html,
body {
  font-size: 62.5%;
  font-family: 'Dancing Script', cursive;
}

h1 {
  font-size: 2.6rem;
}

li,
button,
label,
input,
p {
  font-size: 2rem;
}

h2 {
  font-size: 6.8rem;
  color: rgb(91, 91, 149);
}

h3 {
  font-size: 4.6rem;
  font-weight: normal;
  color: rgba(70, 62, 62, 0.76);
}

h4,
h5 {
  font-size: 2.2rem;
}

a {
  color: rgb(51, 45, 53);
  text-decoration: none;
}

ul {
  list-style: none;
  display: inline-block;
}

li {
  float:left;
}

.home img {
  height: 25%;
  width: 25%;
}

button {
  padding: 2rem 6rem;
  background: rgba(91, 91, 149, 0.8);
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.71s ease-in-out;
  border-radius: 10px;
}

button:hover {
  background: #27394e;
  font-size: 2rem;
  padding: 1.8rem 5.6rem;
}

/* Nav Section with home */

.main-head {
  background: rgba(91, 91, 149, 0.9);
  color: white;
  
}

nav {
  min-height: 10vh;
  /* padding: 1rem; */
  display: flex;
  width: 90%;
  margin: auto;
  align-items: center;
  flex-wrap: wrap;
}

nav ul {
  display: flex;
  flex: 1 1 40rem;
  justify-content: space-around;
  align-items: center;
  list-style: none;
}

#logo {
  flex: 2 1 40rem;
  font-family: 'Courgette', cursive;
  font-weight: 400;
}

.home {
  min-height: 90vh;
  background: linear-gradient(rgba(229, 185, 174, 0.5), transparent),
    url("./img/photo.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.home h3 {
  padding: 5rem;
}



/* sales Section */

#sales {
  min-height: 100vh;
  background: linear-gradient(rgba(252, 235, 235, 0.7), transparent);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.sales {
  width: 90%;
  margin: auto;
}

.sales h2 {
  padding: 1rem 0rem;
  text-decoration: underline;
  text-decoration-thickness: 0.5rem;
}

.sales h3 {
  padding: 4rem 0rem;
  /* background: linear-gradient(#131c27, #663b34);
    background-clip: text;
    -webkit-text-fill-color: transparent; */
}

/* Contact */

#contacts {
  min-height: 100vh;
  background: linear-gradient(rgba(229, 185, 174, 0.7), transparent);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-wrapper {
  background: rgba(19, 28, 39, 0.8);
  width: 60%;
  color: white;
  border-radius: 20px;
}

.form-head {
  text-align: center;
  padding: 4rem;
}

.name-form,
.email-form {
  padding: 3rem;
  text-align: center;
}

.form-wrapper label {
  margin: 0rem 3rem;
}

.form-wrapper button {
  width: 100%;
  padding: 2rem;
  margin-top: 8rem;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.form-wrapper input {
  padding: 1rem 3rem;
}

/* Footer */
footer {
    color: white;
    background: rgba(91, 91, 149, 1);
  }
  .footer-wrapper {
    display: flex;
    padding: 2rem;
    width: 90%;
    margin: auto;
    align-items: center;
    min-height: 10vh;
    flex-wrap: wrap;
  }
  footer h5 {
    flex: 1 1 40rem;
  }
  footer ul {
    display: flex;
    list-style: none;
    flex: 0.1 1 1rem;
    justify-content: space-between;
    align-items: center;
  }


/* Media Query */
@media screen and (max-width: 910px) {
  html {
    font-size: 55%;
  }
  nav {
    text-align: center;
  }

  #logo {
    padding: 2rem;
  }
  .cloud {
    height: 60rem;
  }

  .cards {
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 31vh;
    margin: 2rem 6rem;
  }
}
