@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
}
body {
font-family: "PT Sans", sans-serif;
font-size: 18px;
}


p {
    line-height: 1.6;
    opacity: 0.6;
    font-size: 16px;
}

h1 {
  font-weight: normal;
  font-size: 36px;
}

h2 {
  font-size: 24px;
  font-weight: normal;
}

.container {
    width: 600px;   
    margin: 0 auto;
}

.btn {
    padding: 12px 25px;
    border-radius: 20px;
    background-color: #6273ff;
    margin: 40px;
    border-style: none;
    color: white;
    font-size: 14px;
    text-decoration: none;
    -webkit-box-shadow: 8px 7px 22px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 8px 7px 22px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 8px 7px 22px 0px rgba(34, 60, 80, 0.2);
}

.btn-green {
    background-color: #26bba4;
}

.btn + .btn {
  margin-left: -10px; }

  /* Header  */

.header {
    background-image: url(./images/bg-header-desktop.png);
    background-size: cover;
    background-position: center;
    text-align: center;
    padding-top: 80px;
    margin-bottom: 150px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

header p {
    font-size: 18px;
    margin-bottom: 50px;
}


.logo {
height: 80px;
margin-bottom: 40px;
}


/* Section 2 */

.intro {
 text-align: center;
 display: flex;
 gap: 10px;
 flex-direction: column;
 box-sizing: border-box;
}

.intro p {
    padding-bottom: 50px;
}

.title {
text-align: center;
font-weight: 100;
opacity: 0.8;
margin-bottom: 10px;
}

.computer {
    width: 950px;
    position: relative;
    left: -580px;
    max-width: none;
}

.features-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-top: 70px;
    justify-content: center;
    margin-bottom: 150px;
}


.list {
    display: flex;
    flex-direction: column;
    align-items: start;
    z-index: 1;
    gap: 50px;
    margin-left: -400px;
    margin-top: 50px;
    width: 280px;
}

.list p {
    font-size: 14px;
    margin-top: 10px;
}

/* Section 3 */

.clipboard {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

.devices {
    margin-top: 80px;
    width: 800px;
    margin-bottom: 60px;
}

.third-part {
    display: grid;
    text-align: center;
    max-width: 100%;

}

.third-part .container {
    width: 1000px;
    margin-bottom: 150px;
}

.third-part h1 {
    margin-bottom: 20px;
}

.third-part p {
    font-size: 14px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 50px;
    margin: 70px auto;
    margin-bottom: 150px;
    
}
    
.grid2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin: 50px auto;
}


/* Section 4 */

.fourth-part {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.fourth-part h1 {
    margin-bottom: 20px;
}

.fourth-part p {
    margin-bottom: 25px;
}

/* Footer */


.footer {
  background-color: #f8f8f8;
  padding: 20px 40px;
  margin-top: 150px;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo img {
  height: 40px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  flex: 1;
  margin-left: 100px;
  margin-right: 500px;
}

.footer-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials img {
  height: 20px;
  width: 20px;
}