/*general variable */
:root {
  --BKGCOLOR: radial-gradient(circle at bottom, #3506b6 -95%, #04000d 98%);
  --SITEFONT: #ffffff;
  --font: "roboto", sans-serif;
}

/*general style */
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
  scrollbar-width: smooth;
  color: var(--SITEFONT);
  font-family: var(--font);
}

/* body style*/
body {
  background-image:url(/LandingPage/ASSETS/bkg.png) ;
  background-size: cover;
  resize: both;
  overflow: scroll;
  background-position:center;

}

/*navigation style */
.icon {
  display: flex;
  flex-direction: row;
  margin: 1em 0 0 4em;
}

.links {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100px;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4em;
  padding-left: 34em;
  margin-top: 1em;
  gap: 1em;
}

/*main text */
.banner {
  gap: 0;
}

.letters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  margin: 0 auto;
  width: 80%;
  gap: 0px;
}

h1 {
  grid-column: span 2 / span 1;
  font-size: 8em;
  padding: 0.5em 0 0 1em;
  font-weight: 360;
  width: 5.5em;
}

h2 {
  grid-column: span 2 / span 2;
  grid-column-start: 2;
  grid-row-start: 2;
  font-size: 8em;
  padding: 0;
  font-weight: 360;
  width: 5.5em;
}

.banner p {
  font-size: 1.3em;
  text-align: left;
  padding-top: 6em;
  margin-left: 1em;
  width: 90%;
  height: 40%;
}

/*main images */
.maincontent {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  text-align: center;
}

.workerimg {
  max-width: auto;
  max-height: 240px;
}
#worker0 {
  zoom: 126%;
}
.workers {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  flex-grow: 1;
  align-items: center;
}
.info {
  font-size: 2em;
  font-weight: 400;
  text-align: start;
  padding: 8px;
}

.info p {
  padding: 10% 0;
  font-size: 20px;
  margin: 0;
  height: 10px;
}

.footer {
  display: flex;
  justify-content: center;
  padding: 0 0px;
  margin: 8% 0 4% 0;
}
button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em 1.5em;
  background-color: #ffffff;
  color: #000;
  border-style: none;
  font-weight: 700;
  font-size: 14px;
}
#arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 1em;
}

.plataforms {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2em;
  padding: 0 0 0 12em;
  margin-left: 0;
}

/*responsividade para telas menores*/
@media screen and (min-width: 340px) and (max-width: 700px) {

html{
width: 300px;
}
  .navigation{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 1%;
  }

  .links{
    font-size: 80%;
    padding: 0 0 0 8em;
  }

  .icon{
    margin: 2% 4%; 
    padding: 0;
    width: 10%;
  }

  .banner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: start;
    font-size: 26%;
    padding: 50px 0 20px 0;
    margin: 0;
  }

  .banner p {
    font-size: 200%;
    padding: 4px 4px 0 0;
    margin: 50% 0 0 0;
    width: 180%;
    height: 10%;
  }

  .workers {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding: 0;
  }

  .workers img {
    width: 140px;
  }

  .workers h3 {
    font-size: 300%;
    padding: 8px;
  }

  .info {
    padding: 10% 0;
    font-size: 0.1em;
    margin: 0 20% 0 1%;
    height: 2px;
  }

  .info p {
    padding: 10% 0;
    font-size: 0.9em;
    margin: 0;
    height: 2px;
  }
  .footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10%;
    margin: 8% 0 4% 0;
  }

  .plataforms {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    font-size: 80%;
    padding: 1%;
    margin: 0 0 0 0;
  }
}
