* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --Violet: hsl(257, 40%, 49%);
  --Soft-Magenta: hsl(300, 69%, 71%);
  --ff-body: "Open Sans", sans-serif;
  --ff-heading: "Poppins", sans-serif;
}

body {
  width: 1440px;
  background: url(images/bg-desktop.svg);
  background-color: var(--Violet);
  background-repeat: no-repeat;
  background-size: 100%;
}

.container {
  display: flex;
  justify-content: space-around;
  padding: 80px 100px;
}

.col1__logo {
  width: 30%;
  padding-bottom: 80px;
}

.col2 {
  height: 80vh;
  padding-left: 60px;
  padding-top: 60px;
}
.col2__heading {
  padding-top: 150px;
  font-size: 35px;
  font-family: var(--ff-heading);
  font-weight: 600;
  color: white;
}
.col2__para {
  color: white;
  font-family: var(--ff-body);
  font-weight: 400;
  padding: 20px 0;
}
.col2__btn {
  font-family: var(--ff-heading);
  font-weight: 700;
  color: var(--Violet);
  padding: 15px;
  margin: 15px 0;
  border: none;
  border-radius: 30px;
  width: 170px;
  background-color: white;
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.2);
  transition: color 0.3s, background-color 0.3s;
}
.col2__btn:hover {
  color: rgb(255, 255, 255);
  background-color: var(--Soft-Magenta);
  cursor: pointer;
}
.col2__icons {
  text-align: end;
  transform: translate(0, 100px);
}
.col2__icons i {
  color: white;
  width: 40px;
  padding: 8px 0;
  margin-left: 5px;
  text-align: center;
  font-size: 20px;
  border: 2px solid;
  border-radius: 50%;
  transition: color 0.3s;
}
.col2__icons i:hover {
  color: var(--Soft-Magenta);
  cursor: pointer;
}

@media screen and (max-width: 375px) {
  body {
    width: 375px;
    background: url(images/bg-mobile.svg);
    background-color: var(--Violet);
    background-repeat: no-repeat;
    background-size: 100%;
  }
  .container {
    display: block;
    padding: 35px;
  }
  .col1 {
    display: block;
  }
  .col1__logo {
    width: 100px;
    padding-bottom: 60px;
  }
  .col1__img {
    width: 300px;
  }
  .col2 {
    height: 250px;
    padding-left: 6px;
    padding-top: 6px;
  }
  .col2__heading {
    text-align: center;
    padding-top: 15px;
    font-size: 25px;
  }
  .col2__para {
    text-align: center;
  }
  .col2__btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    margin-bottom: 30px;
    border: none;
    border-radius: 20px;
    width: 170px;
  }
  .col2__icons {
    text-align: center;
    transform: translate(0, 50px);
    padding-bottom: 50px;
    padding-top: 50px;
  }
}/*# sourceMappingURL=style.css.map */