@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Mobile responsive */
@media (max-width: 768px) {
  #home {
    width: fit-content;
    height: 100dvh;
    background-color: white;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .homeContainer {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .homeContainer > .left-content {
    grid-area: 2 / 1;
    width: fit-content;
    text-align: center;
  }

  .left-content > .heading {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1mm;
    text-align: center;
  }

  .left-content > .text {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
  }

  .left-content > .button {
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: white;
    background-color: black;
    text-decoration: none;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 50px;
    letter-spacing: 1.2mm;
    transition: all ease-in-out 0.3s;
  }

  .left-content > .button:hover {
    background-color: white;
    border: solid 1px black;
    color: black;
  }

  .homeContainer > .right-content {
    grid-area: 1 / 1;
    text-align: center;
    margin-top: 150px;
  }

  .right-content > .home-image {
    width: 50%;
  }

  /* The bottom row */
  #home .bottom-row {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    padding: 0px;
    text-align: center;
    margin-top: 150px;
  }

  #home .bottom-row > .box {
    grid-area: 2 / 1;
    background-color: black;
    width: 10px;
    height: 10px;
    transition: all ease-in-out 0.3s;
    border-radius: 100%;
    margin: auto;
    display: none;
  }

  #home .bottom-row > .box:hover {
    transform: scale(1.2) !important;
  }

  #home .bottom-row > .apps {
    grid-area: 2 / 1;
    text-align: center;
  }

  #home .bottom-row > .apps > p {
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    letter-spacing: 1.2mm;
  }

  #home .bottom-row > .socials {
    grid-area: 3 / 1;
    text-align: center;
    display: flex;
    justify-content: center; /* centers icons horizontally */
    align-items: center;
    gap: 40px;
    margin-bottom: 15px;
  }

  #home .bottom-row > .socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4px;
    height: 4px;
    transition: all 0.3s ease;
  }

  #home .bottom-row > .socials a:hover {
    transform: scale(1.2);
  }

  #home .bottom-row > .socials img {
    width: 25px;
    height: 25px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #home {
    width: 95dvw;
    height: 90dvh;
    background-color: white;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .homeContainer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .homeContainer > .left-content {
    grid-area: 1 / span 2;
    margin-left: 50px;
  }

  .left-content > .heading {
    font-family: "Poppins", sans-serif;
    font-size: 52px;
    font-weight: 400;
    letter-spacing: 3mm;
    margin-bottom: -10px;
  }

  .left-content > .text {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 40px;
  }

  .left-content > .button {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: white;
    background-color: black;
    text-decoration: none;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 50px;
    letter-spacing: 1.2mm;
    transition: all ease-in-out 0.3s;
  }

  .left-content > .button:hover {
    background-color: white;
    border: solid 1px black;
    color: black;
  }

  .homeContainer > .right-content {
    grid-area: 1 / span 3;
  }

  .right-content > .home-image {
    width: 80%;
    margin-left: 0px;
  }

  /* The bottom row */
  #home .bottom-row {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0px;
    text-align: center;
  }

  #home .bottom-row > .box {
    grid-area: 2 / 1;
    background-color: black;
    width: 30px;
    height: 30px;
    margin-left: 50px;
    transition: all ease-in-out 0.3s;
    border-radius: 100%;
  }

  #home .bottom-row > .box:hover {
    transform: scale(1.2) !important;
  }

  #home .bottom-row > .apps {
    grid-area: 2 / 2;
    text-align: center;
  }

  #home .bottom-row > .apps > p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    letter-spacing: 1.2mm;
  }

  #home .bottom-row > .socials {
    grid-area: 2 / 3;
    text-align: end;
    margin-right: 50px;
  }

  #home .bottom-row > .socials {
    display: flex;
    justify-content: end; /* centers icons horizontally */
    align-items: end;
    gap: 0.5rem; /* space between icons */
    margin-bottom: 15px;
  }

  #home .bottom-row > .socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
  }

  #home .bottom-row > .socials a:hover {
    transform: scale(1.2);
    cursor: pointer;
  }

  #home .bottom-row > .socials img {
    width: 30px;
    height: 30px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  #home {
    width: 95dvw;
    height: 90dvh;
    background-color: white;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .homeContainer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .homeContainer > .left-content {
    grid-area: 1 / span 2;
    margin-left: 50px;
  }

  .left-content > .heading {
    font-family: "Poppins", sans-serif;
    font-size: 46px;
    font-weight: 400;
    letter-spacing: 3mm;
    margin-bottom: -10px;
  }

  .left-content > .text {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 40px;
  }

  .left-content > .button {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: white;
    background-color: black;
    text-decoration: none;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 50px;
    letter-spacing: 1.2mm;
    transition: all ease-in-out 0.3s;
  }

  .left-content > .button:hover {
    background-color: white;
    border: solid 1px black;
    color: black;
  }

  .homeContainer > .right-content {
    grid-area: 1 / span 3;
  }

  .right-content > .home-image {
    width: 80%;
    margin-left: 0px;
  }

  /* The bottom row */
  #home .bottom-row {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0px;
    text-align: center;
  }

  #home .bottom-row > .box {
    grid-area: 2 / 1;
    background-color: black;
    width: 30px;
    height: 30px;
    margin-left: 50px;
    transition: all ease-in-out 0.3s;
    border-radius: 100%;
  }

  #home .bottom-row > .box:hover {
    transform: scale(1.2) !important;
  }

  #home .bottom-row > .apps {
    grid-area: 2 / 2;
    text-align: center;
  }

  #home .bottom-row > .apps > p {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    letter-spacing: 1.2mm;
  }

  #home .bottom-row > .socials {
    grid-area: 2 / 3;
    text-align: end;
    margin-right: 50px;
  }

  #home .bottom-row > .socials {
    display: flex;
    justify-content: end; /* centers icons horizontally */
    align-items: end;
    gap: 0.5rem; /* space between icons */
    margin-bottom: 15px;
  }

  #home .bottom-row > .socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
  }

  #home .bottom-row > .socials a:hover {
    transform: scale(1.2);
    cursor: pointer;
  }

  #home .bottom-row > .socials img {
    width: 30px;
    height: 30px;
  }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  #home {
    width: 95dvw;
    height: 90dvh;
    background-color: white;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .homeContainer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .homeContainer > .left-content {
    grid-area: 1 / span 2;
    margin-left: 50px;
  }

  .left-content > .heading {
    font-family: "Poppins", sans-serif;
    font-size: 46px;
    font-weight: 400;
    letter-spacing: 3mm;
    margin-bottom: -10px;
  }

  .left-content > .text {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 40px;
  }

  .left-content > .button {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: white;
    background-color: black;
    text-decoration: none;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 50px;
    letter-spacing: 1.2mm;
    transition: all ease-in-out 0.3s;
  }

  .left-content > .button:hover {
    background-color: white;
    border: solid 1px black;
    color: black;
  }

  .homeContainer > .right-content {
    grid-area: 1 / span 3;
  }

  .right-content > .home-image {
    width: 80%;
    margin-left: 0px;
  }

  /* The bottom row */
  #home .bottom-row {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0px;
    text-align: center;
  }

  #home .bottom-row > .box {
    grid-area: 2 / 1;
    background-color: black;
    width: 30px;
    height: 30px;
    margin-left: 50px;
    transition: all ease-in-out 0.3s;
    border-radius: 100%;
  }

  #home .bottom-row > .box:hover {
    transform: scale(1.2) !important;
  }

  #home .bottom-row > .apps {
    grid-area: 2 / 2;
    text-align: center;
  }

  #home .bottom-row > .apps > p {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    letter-spacing: 1.2mm;
  }

  #home .bottom-row > .socials {
    grid-area: 2 / 3;
    text-align: end;
    margin-right: 50px;
  }

  #home .bottom-row > .socials {
    display: flex;
    justify-content: end; /* centers icons horizontally */
    align-items: end;
    gap: 0.5rem; /* space between icons */
    margin-bottom: 15px;
  }

  #home .bottom-row > .socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
  }

  #home .bottom-row > .socials a:hover {
    transform: scale(1.2);
    cursor: pointer;
  }

  #home .bottom-row > .socials img {
    width: 30px;
    height: 30px;
  }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  #home {
    width: 95dvw;
    height: 90dvh;
    background-color: white;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .homeContainer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .homeContainer > .left-content {
    grid-area: 1 / span 2;
    margin-left: 50px;
  }

  .left-content > .heading {
    font-family: "Poppins", sans-serif;
    font-size: 52px;
    font-weight: 400;
    letter-spacing: 3mm;
    margin-bottom: -10px;
  }

  .left-content > .text {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 40px;
  }

  .left-content > .button {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: white;
    background-color: black;
    text-decoration: none;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 50px;
    letter-spacing: 1.2mm;
    transition: all ease-in-out 0.3s;
  }

  .left-content > .button:hover {
    background-color: white;
    border: solid 1px black;
    color: black;
  }

  .homeContainer > .right-content {
    grid-area: 1 / span 3;
  }

  .right-content > .home-image {
    width: 80%;
    margin-left: 0px;
  }

  /* The bottom row */
  #home .bottom-row {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0px;
    text-align: center;
  }

  #home .bottom-row > .box {
    grid-area: 2 / 1;
    background-color: black;
    width: 30px;
    height: 30px;
    margin-left: 50px;
    transition: all ease-in-out 0.3s;
    border-radius: 100%;
  }

  #home .bottom-row > .box:hover {
    transform: scale(1.2) !important;
  }

  #home .bottom-row > .apps {
    grid-area: 2 / 2;
    text-align: center;
  }

  #home .bottom-row > .apps > p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    letter-spacing: 1.2mm;
  }

  #home .bottom-row > .socials {
    grid-area: 2 / 3;
    text-align: end;
    margin-right: 50px;
  }

  #home .bottom-row > .socials {
    display: flex;
    justify-content: end; /* centers icons horizontally */
    align-items: end;
    gap: 0.5rem; /* space between icons */
    margin-bottom: 15px;
  }

  #home .bottom-row > .socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
  }

  #home .bottom-row > .socials a:hover {
    transform: scale(1.2);
    cursor: pointer;
  }

  #home .bottom-row > .socials img {
    width: 30px;
    height: 30px;
  }
}

/* XXX-Large devices (larger desktops, 1920px and up) */
@media (min-width: 1920px) {
  #home {
    width: 95dvw;
    height: 90dvh;
    background-color: white;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .homeContainer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .homeContainer > .left-content {
    grid-area: 1 / span 2;
    margin-left: 50px;
  }

  .left-content > .heading {
    font-family: "Poppins", sans-serif;
    font-size: 52px;
    font-weight: 400;
    letter-spacing: 3mm;
    margin-bottom: -10px;
  }

  .left-content > .text {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 40px;
  }

  .left-content > .button {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: white;
    background-color: black;
    text-decoration: none;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 50px;
    letter-spacing: 1.2mm;
    transition: all ease-in-out 0.3s;
  }

  .left-content > .button:hover {
    background-color: white;
    border: solid 1px black;
    color: black;
  }

  .homeContainer > .right-content {
    grid-area: 1 / span 3;
  }

  .right-content > .home-image {
    width: 80%;
    margin-left: 0px;
  }

  /* The bottom row */
  #home .bottom-row {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0px;
    text-align: center;
  }

  #home .bottom-row > .box {
    grid-area: 2 / 1;
    background-color: black;
    width: 30px;
    height: 30px;
    margin-left: 50px;
    transition: all ease-in-out 0.3s;
    border-radius: 100%;
  }

  #home .bottom-row > .box:hover {
    transform: scale(1.2) !important;
  }

  #home .bottom-row > .apps {
    grid-area: 2 / 2;
    text-align: center;
  }

  #home .bottom-row > .apps > p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    letter-spacing: 1.2mm;
  }

  #home .bottom-row > .socials {
    grid-area: 2 / 3;
    text-align: end;
    margin-right: 50px;
  }

  #home .bottom-row > .socials {
    display: flex;
    justify-content: end; /* centers icons horizontally */
    align-items: end;
    gap: 0.5rem; /* space between icons */
    margin-bottom: 15px;
  }

  #home .bottom-row > .socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
  }

  #home .bottom-row > .socials a:hover {
    transform: scale(1.2);
    cursor: pointer;
  }

  #home .bottom-row > .socials img {
    width: 30px;
    height: 30px;
  }
}
