@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Poppins:wght@400;600&display=swap');
 *, *::before, ::after {
box-sizing: border-box;
padding: 0;
margin: 0;
}

body {
  background-color: hsl(257, 40%, 49%);
  background-image: url(../images/bg-mobile.svg);
  background-repeat: no-repeat;
  background-size: contain;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

main {
  width: 100%;
  margin: 0 auto;
  min-height: 100vh
}

h1 {
  color: #fff;
  font-family: "Poppins" sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 1px;
  padding-bottom: 15px;

}

button  {
  width: 200px;
  height: 40px;
  border-radius: 20px;
  border: solid #fff;
  background-color: #fff;
  font-size: 0.75rem;
  color: hsl(257, 40%, 49%);
  margin-bottom: 60px;
  box-shadow: 0 8px 17px -8px rgba(0, 0, 0, 0.8);
  transition: all .3s ease;
}

button:hover {
  background-color: hsl(300, 69%, 71%);
  color: #fff;
  border-color: hsl(300, 69%, 71%);
}

.container {
  margin: 0 2rem;
  height: 90%
}
/* Logo/markup Section */
.header {
  margin: 27px 0 55px
}
.header img {
  width: 100%;
}
.header .logo {
  width: 130px;
  margin-bottom: 60px
}

/* Text Section */
.main-text {
  text-align: center;
}


.main-text p {
  color: #fff;
  padding-bottom: 25px;
  font-weight: lighter;
}

/*Social media*/
.social a i {
  color: #fff;
  font-size: 1rem;
  position: relative;
  border: 1px solid #fff;
  border-radius: 50%
}

.fa-twitter, .fa-instagram {
  margin-left: 2rem
}
.fa-facebook-f, .fa-twitter, .fa-instagram {
  padding: 7px;
}

.social a i:hover {
  color: hsl(300, 69%, 71%);
  border-color: hsl(300, 69%, 71%);
}

@media screen and (min-width: 800px) {
  body {
    background-image: url(../images/bg-desktop.svg);
    background-repeat: no-repeat;
  }
  button {
    width: 150px;
  }
  /* main {
   width: 1440px;
  } */
  .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  .header {
    width: 100%;
  }
  .main-text {
    position:relative;
    text-align: left;
  }
  .social {
    position: absolute;
    bottom: -300px;
    right: 0;
  }
}
