@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poiret+One&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  width: 100%;
  height: 100vh;
  margin: 0;
  background: #fff;
  font-family: "Mulish", sans-serif;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

body.showNav {
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  color: #888888;
  font-family: "Mulish", sans-serif;
}

h1 {
  font-size: 56px;
  font-weight: 700;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

li,
label,
input,
textarea {
  color: #888888;
}

span {
  color: #4d3664;
}

p {
  font-size: 20px;
}

#nav-bar {
  background: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px;
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  z-index: 100;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

#nav-bar ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

#nav-bar li {
  list-style-type: none;
  margin: 40px 0 40px 0;
}

#nav-bar li:first-of-type {
  padding-top: 50px;
}

#nav-bar a {
  color: #888888;
}

#nav-bar a:hover {
  font-size: 17px;
  text-decoration: none;
}

#nav-bar .logo img {
  margin: 0 auto;
  border: none;
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
}

header {
  background: #fff;
  height: auto;
  width: 100%;
}

header i {
  color: #f3d2d0;
}

.toggle {
  background-color: #fff;
  color: #888888;
  border: none;
  position: absolute;
  top: 20px;
  left: 20px;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.head {
  margin-left: 100px;
  margin-top: 30px;
  padding: 20px;
  width: 80%;
  -webkit-animation: fadein 3s;
          animation: fadein 3s;
}

.head h1 {
  letter-spacing: 10px;
}

.description {
  color: #4d3664;
  font-family: "Poiret One", cursive;
  font-size: 30px;
}

.quote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #888888;
  font-family: "Poiret One", cursive;
  font-size: 20px;
}

.main {
  background: #fff;
  padding: 15px;
  margin: 0 auto;
  width: 90%;
  text-align: center;
}

.main .fa i {
  color: #4d3664;
  cursor: pointer;
}

.intro {
  margin: 50px auto;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  padding: 20px;
  margin-bottom: 0;
}

.footer img {
  width: 50px;
  height: 50px;
}

.footer div {
  margin-left: 30px;
  margin-right: 30px;
}

.socials {
  text-align: center;
}

.card {
  border: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.card:hover {
  -webkit-box-shadow: -2px 6px 19px 0px #f3d2d0;
          box-shadow: -2px 6px 19px 0px #f3d2d0;
  -webkit-transform: scale(1);
          transform: scale(1);
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*# sourceMappingURL=styles.css.map */