* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}
#header {
  height: 100vh;
  background-image: url(images/background.png);
  background-position: center;
  background-size: cover;
}
.container {
  margin-right: 100px;
  margin-left: 100px;
}
.logo {
  margin-top: 30px;
  width: 100px;
}

.header-text {
  max-width: 350px;
  margin-top: 140px;
}
h1 {
  font-size: 34px;
}
.square {
  height: 12px;
  width: 12px;
  display: inline-block;
  background: #f67c92;
  margin: 15px 0;
}
.common-btn {
  padding: 18px 40px;
  background: transparent;
  outline: none;
  border: 2px solid #f67c92;
  font-weight: bold;
  cursor: pointer;
  margin: 20px;
  margin-left: 0;
}
p {
  font-size: 15px;
  line-height: 18px;
  color: #777;
}
.line-1 {
  height: 15px;
  width: 15px;
  background: #f67c92;
  display: inline-block;
}
.line-2 {
  height: 15px;
  width: 15px;
  background: #f3b2be;
  display: inline-block;
}
.line-3 {
  height: 15px;
  width: 15px;
  background: #fcd5dc;
  display: inline-block;
}
#sideNav {
  width: 250px;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  background: #f67c92;
  z-index: 2;
}
nav ul li {
  list-style: none;
  margin: 50px 20px;
}
nav ul li a {
  text-decoration: none;
  color: #fff;
}
#menuBtn {
  width: 50px;
  position: fixed;
  right: 65px;
  top: 65px;
  z-index: 2;
  cursor: pointer;
}
