* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
:root {
  --primary-color: hsl(257, 40%, 49%);
  --secondary-color: hsl(300, 69%, 71%);
}

.attribution {
  font-size: 11px;
  text-align: center;
  color: #ffff;
}
.attribution a {
  /* color: hsl(228, 45%, 44%); */
  color: #ffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}
p {
  font-family: "Open Sans", sans-serif;
}
.main {
  background-image: url(./images/bg-desktop.svg);
  background-color: var(--primary-color);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100vh;
}
.div2 {
  width: 40% !important;
}
button {
  color: var(--primary-color) !important;
  font-weight: 600 !important;
  padding: 15px 60px !important;
}

@media screen and (max-width: 768px) {
  .col-md-6.col-sm-12.px-5.py-5.my-5.div2 {
    margin-top: -60px !important;
  }
  .div2 {
    width: 49% !important;
  }
  button.btn.rounded-pill.btn-light.px-5.shadow-lg {
    margin-left: 0%;
  }
  .icons {
    text-align: center !important;
  }
  .fab {
    margin: 3px !important;
  }
}

@media screen and (max-width: 425px) {
  .main {
    background-image: url(./images/bg-mobile.svg);
  }
  h1 {
    text-align: center;
  }
  p {
    text-align: center;
  }
  button {
    justify-content: center;
  }
  .div2 {
    width: 100% !important;
  }
  .icons {
    text-align: center !important;
  }
  .fab {
    margin: 3px !important;
  }
  button.btn.rounded-pill.btn-light.px-5.shadow-lg {
    margin-left: 25% !important;
  }
}
@media screen and (max-width: 375px) {
  img.img-fluid.m-5 {
    margin: 35px 20px !important;
  }
  button.btn.rounded-pill.btn-light.px-5.shadow-lg {
    margin-left: 23% !important;
  }
}
@media screen and (max-width: 320px) {
  img.img-fluid.m-5 {
    margin: 35px 5px !important;
  }
  button.btn.rounded-pill.btn-light.px-5.shadow-lg {
    margin-left: 13% !important;
  }
}
.icons {
  text-align: end;
  margin-right: 30px;
}
footer {
  /* margin-bottom: 8.5%; */
}
.fab {
  padding: 10px;
  text-align: center;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ffff;
  margin: 10px;
}
a{
  color: #ffff !important;
  text-decoration: none !important;
  cursor: pointer;
}