@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Poppins:wght@400;600&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
      background-color: hsl(257, 40%, 49%);
      background-image: url(images/bg-desktop.svg);
      overflow: hidden;
}

.wrapper {
          padding: 20px;
          
}

.logo {
        margin-top: 50px;
        width: 200px;
        margin-left: 100px;
}

.box {
      margin-top: 60px;
}

.box1 {
       margin-right: 290px;
}

.bold-text {
            font-family: 'Poppins' sans-serif;
            color: #fff;
            padding: 15px;
}

.soft-text {
            font-family: 'Open Sans' sans-serif;
            font-weight: 400;
            color: rgb(235, 235, 235);
            padding: 10px;
}  

.btn {
      width: 35%;
      height: 10%;
      background-color: #fff;
      color: hsl(257, 40%, 49%);
      border-radius: 50px;
      font-family: 'Poppins' sans-serif;
      font-weight: 600;
}

.btn:hover {
            background-color: hsl(300, 69%, 71%);
            color: #fff;
}

.icons {
        margin-left: 80%;
        position: relative;
        bottom: 50px;
}

.icons a {
          text-decoration: none;
}

.fab:hover {
              background-color: hsl(300, 69%, 71%);
}

.fab {
      border: 1px solid #fff;
      border-radius: 50px;
        font-size: 20px;
        width: 40px;
        height: 40px;
        padding: 10px;
        color: #fff;
        margin: 10px;
}

.attribution { 
              font-size: 11px; 
              text-align: center; 
              position: relative;
              bottom: 30px;
}
    
.attribution a {
                 color: #fff; 
                 text-decoration: none;
}

@media screen and (max-width: 750px) {
   
    body {
          background-image: url(images/bg-mobile.svg);
          background-repeat: no-repeat;
    }

    .mock-up {
             width: 270px;
             margin: auto;
             margin-left: 45px;
    }

    .logo {
           width: 125px;
           margin-top: 8px;
           margin-left: 5px;
    }

    .box2 {
        width: 350px;
    }

    .bold-text {
               font-size: 20px;
               text-align: center;
               padding: 0px;
               margin-top: 30px;
    }

    .soft-text {
                text-align: center;
    }

    .btn {
         width: 65%;
         height: 12%;
         margin-left: 50px;
         font-size: 13px;
    }

    .icons {
            display: flex;
            flex-direction: row;
            position: relative;
            top: 20px;
            right: 180px;
    }

    .fab {
        font-size: 14px;
        width: 25px;
        height: 25px;
        padding: 5px;
    }

    .attribution {
                 position: absolute;
                 top: 700px;
                 left: 40px;
                 display: none;
    }
}
