* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
  /* font-family: 'Open Sans', sans-serif;
font-family: 'Poppins', sans-serif; */
}

:root {
  --violet: hsl(257, 40%, 49%);
  --softMagenta: hsl(300, 69%, 71%);
  --white: #f5f5f5;
  --snow: #f5fffa;
}

body {
  background-color: var(--violet);
  background-image: url("../images/bg-mobile.svg");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;

  flex-direction: column;
}

.container {
  display: flex;
  flex-direction: column;
  padding: 0px 2rem 2rem 2rem;
}

#logo {
  height: auto;
  width: 219px;
  margin-top: 61px;
}

.main-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#mockups {
  height: auto;
  width: 100%;
  margin: 2.5rem auto 2.5rem;
}

.title {
  font-size: 1.5rem;

  color: var(--white);
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.sub-title {
  font-size: 0.9rem;
  color: var(--snow);
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin: 1rem 0;
}

.btn {
  padding: 0.5rem 1rem;
  width: 80%;
  border-radius: 30px;
  outline: none;
  background-color: var(--white);
  border: 1px solid var(--white);
  color: var(--violet);
  font-size: 1rem;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  margin-bottom: 2rem;
}

.btn:hover {
  background-color: var(--violet);
  color: var(--white);
}

ul {
  display: flex;
  text-align: center;
  align-items: center;

  justify-content: center;
}

li {
  list-style: none;
  border: 1px solid var(--snow);
  border-radius: 100%;
  padding: 0.4rem;
  margin: 0.7rem;
}

li a {
  text-decoration: none;
}
.fa-icon {
  /* width: 3rem; */
  font-size: 1.2rem;
  border-radius: 2px;
  color: var(--snow);
}

li:hover {
  background-color: var(--softMagenta);
}

.attribution {
  font-size: 14px;
  color: var(--snow);
}
.attribution a {
  color: var(--softMagenta);
}

@media only screen and (min-width: 800px) {
  body {
    background-image: url("../images/bg-desktop.svg");
  }
  .main-container {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .content {
    padding-left: 2rem;
  }
  #logo {
    width: 230px;
    margin-top: 41px;
  }
  #mockups {
    height: auto;
    width: 50%;
    margin: 1rem auto 2.5rem;
  }
  .title {
    padding-top: 2rem;
    font-size: 2rem;
    text-align: left;
  }
  .sub-title {
    font-size: 1rem;
    text-align: left;
  }
  .btn {
    width: 35%;
    align-items: left;
    float: left;
    margin-bottom: 0rem;
  }

  ul {
    justify-content: right;
  }

  .attribution {
    float: right;
  }
}
