html,body{
  height: 100%;
  width: 100%;

}

/*poppins font*/
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/*armino font*/
.arimo{
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body{
  background-color: #f8f7f2;
  padding-top: 80px;
}


ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color:#f5f5f5;
    box-shadow: 2px 2px 4px #808080;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;

  }

  li {
    float: right;
  }

  li a {
    display: block;
    color: black;
    text-align: center;
    padding: 16px 20px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
  }

  li a:hover {
    background-color: #5675b5;
    color: #e8ebc0;
  }

.mb-3{
  padding-top: 15px;
  margin-top: 40px;
}

.box-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 10%;
  box-sizing: border-box;
  margin-top: 5%;
}

.box {
  background-color: #5675b5;
  width: 25%;
  min-height: 400px;
  max-height: 1000px;
  border-radius: 25px;
  text-align: center;
  color: white;
  padding: 20px;
  transition: transform 0.3s ease;
}
footer{
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #ffffff;
  color: black;
  text-align: center;
  padding: 10px;
  font-family: "Poppins", sans-serif;
  box-shadow: 2px 2px 4px #ffffff;
  z-index: 1000;
  margin-top: 100px;
}

.box:hover{
  transform: scale(1.1);
  box-shadow: 0px 7px 10px #303030;

}

.title{
  font-size: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin-top: 10px;
}

#pitch:hover #pitchtitle {
  color: #e8ebc0;
}
#pitchtitle {
  transition: color 0.3s ease;
}

#theme:hover #themetitle {
  color: #e8ebc0;
}
#themetitle {
  transition: color 0.3s ease;
}

#why:hover #whytitle {
  color: #e8ebc0;
}
#whytitle {
  transition: color 0.3s ease;
}
