/* navigation bar and general settings */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

*{
    box-sizing: border-box;
    /* margin: 0; */
    padding: 0;
  }


li, a, button, .logo{
      font-family:'Open Sans',sans-serif ;
      font-weight: 100;
      font-size: 16px;
      color:black;
      text-decoration: none;
  }

  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color:rgb(248, 150, 30);
    position: sticky;
    top: 0;
  }

  #nav{
      list-style: none;
  }

  #nav li{
    display: inline-block;
    padding: 0px 20px;
  }

button{
      padding: 9px 25px;
      background-color: #f9844a;
      transition: all 0.2s ease 0s;
      border: 1px solid #f3722c;
      cursor: pointer;
      border-radius: 50px;
  }

/* homepage contents */
.section{
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e5e5e5;
}

.container{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left{
  width: 50%;
  height: 600px;
  background:url(https://images.unsplash.com/photo-1543269865-cbf427effbad?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1050&q=80) no-repeat center/cover;
  border-radius: 8px;
}

.right{
  width: 50%;
  min-height: 400px;
  background-color: #14213d;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-radius: 8px;
  color: white;
  font-family:'Open Sans',sans-serif;
  font-weight: 300;
  margin-left: -130px;
}

#title{
  font-family:'Open Sans',sans-serif ;
  font-weight: 100;
  font-size: 26px;
  background-color: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  text-transform: uppercase;
}

h1{
  font-weight: 100;
}


/* this is for the second section */

/* the section code is common */

.container2{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 150px;
  padding-bottom: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgb(248, 150, 30);
  border-bottom: 1px solid rgb(248, 150, 30);
}

.left2{
  width: 50%;
  min-height: 400px;
  background-color: #14213d;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-radius: 8px;
  color: white;
  font-family:'Open Sans',sans-serif;
  font-weight: 300;
  z-index: -0.5;
  position:relative;
}

.right2{
  width: 50%;
  height: 600px;
  background:url(https://images.unsplash.com/photo-1570906740485-4718aaaf7fe0?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80) no-repeat center/cover;
  border-radius: 8px;
  margin-left: -140px;
}

/* the third section */

.left3{
  width: 50%;
  height: 600px;
  background:url(https://images.unsplash.com/photo-1465929639680-64ee080eb3ed?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80) no-repeat center/cover;
  border-radius: 8px;
}

.button{
    display: flex;
    justify-content: center;
    align-content: center;
    background:none;
    border: 2px solid;
    padding: 1em 2em;
    font-size: 1em;
    color: rgb(248, 150, 30);
}

.button:hover{
    color: white;
    border-color: rgb(248, 150, 30);
    transform: translateY(-0.25em);
    box-shadow: 0 0.5em 0.5em -0.4em rgb(248, 150, 30);
}

div h1 p{
  margin-bottom: 20px;
  padding-bottom: 20px;
}