* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  min-height: 100vh;
  background-color: #F7F8F4;
  display: flex;
  flex-direction: column;
}

.docu-header {
  position: relative;
  max-height: 100%;
  max-width: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 2%;
  margin-bottom: -2%;
  width: 100%;
}

.docu-title {
  margin: 0;
  flex: 1;
  font-size: 45px;
  letter-spacing: -0.01em;
  line-height: 50px;
  font-weight: 600;
  font-family: inherit;
  display: flex;
  max-width: 40%;
  color: #447F4F;
  justify-content: center;
  align-items: center;
}

.install {
  background: linear-gradient(
    90deg,
    #61aa6e 10.6%,
    #549c7e 55.6%,
    #2f7471 81.1%,
    #155151 97%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  display: flex;
  gap: 100px;
  margin-top: 20px;
  justify-content: center; /* Center horizontally */
  align-items: center;     /* Center vertically */
  margin-bottom: 5%;
}

.android-cont {
  width: 600px;
  height: auto;
  padding: 20px;
  border: 4px solid #447F4F;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  margin-top: 3%;
}

.android-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.android-header img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.instructions-title {
  font-size: 24px;
  color: #447F4F;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.instructions {
  font-size: 18px;
}

.instructions ol {
  padding-left: 20px;
  line-height: 2; /* Adds vertical spacing between items */
}

.instructions ol li {
  margin-bottom: 10px; /* Additional spacing per item */
}

@media (max-width: 1600px) {
  .docu-title {
    font-size: 40px;
    line-height: 60px;
    max-width: 30%;
    margin-left: 8.5%;
    margin-top: -3%;
  }
  .docu-header {
    margin-top: 5%;
  }
  .container {
    margin-left: 8%;
  }
}

@media (max-width: 800px) {
  .docu-title {
    font-size: 40px;
    line-height: 60px;
    max-width: 30%;
    margin-left: -50%;
    margin-top: -3%;
  }
  .docu-header {
    margin-top: 5%;
  }
  .container {
    display: block;
    margin-left: 13%;
  }
}

@media (max-width: 400px) {
  .docu-title {
    font-size: 35px;
    line-height: 60px;
    max-width: 30%;
    margin-left: 8%;
    margin-top: -3%;
  }
  .docu-header {
    margin-top: 5%;
  }
  .container {
    display: block;
    margin-left: 11%;
  }
  .android-cont {
    width: 300px;
    height: auto;
    border: 3px solid #447F4F;
  }
  .main {
    margin-bottom: 60px;
  }
}
