body, html{
  background-color: #1f2125;
  color: #fff;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

header {
  background-color: #1e2f3e;
  height: 50px;
  padding: 20px;
  margin: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

h1, h2, h3, h4{
  font-family: "Fredoka";
}

h1{
  font-size: 4rem;
}

h2 {
  font-size: 2rem;
}

a {
  color: #fff;
}

a:visited {
  color: #fff;
}

li {
  margin: 5px 0;
}

section {
  min-height: 20vh;
  margin: auto;
  width: 90vw;
  max-width: 2000px;
  background-color: #18191f;
  border-radius: 20px;
  box-shadow: 5px 5px 7px rgba(33,33,33,.9);
  padding-bottom: 60px;
}

section h2 {
  background-color: #1e2f3e;
  padding: 30px;
  text-align: center;
  border-radius: 20px 20px 0 0;
}

.fa-solid {
  transition: 0.3s ease;
}

.fa-arrow-down:hover {
  transform: scale(1.5);
}

.hero {
  position: relative;
  width: 100%;
  height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 150px;
  background-color: #1f2125;
  box-shadow: none;
}

.hero_scrolldown {
  position: absolute;
  margin-top: 50px;
  bottom: 20px;
}

.two {
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.desc {
  max-width: 700px;
}

.two img {
  margin: 20px;
  border-radius: 15px;
  object-fit: cover;
  max-height: 600px;
  transition: 0.5s ease;
}

.two img:hover {
  transform: scale(1.1);
}

.numberrow {
  display: flex;
  flex-direction: column;
}

.numberrow div{
  margin: 20px;
  text-align: center;
}

.numberrow h3{
  font-size: 3rem;
  margin-bottom: 0px;
}

.numberrow p{
  font-size: 1.3rem;
}

a.button {
  padding: 10px;
  border-radius: 5px;
  background-color: #3174ad;
  text-decoration: none;
}

#developers h3 {
  font-size: 2rem;
  margin-bottom: 0;
}

#developers p {
  margin-bottom: 40px;
}

#developers a {
  font-size: 1rem;
}

#developers .two {
  align-items: start;
  gap: 20px;
}

footer {
  display: flex;
  margin: 100px 50px;
  justify-content: center;
  align-items: center;
}

footer img {
  max-height: 100px;
  max-width: 100%;
  object-fit: contain;
}

@media only screen and (min-width: 900px) {
  .two {
    padding: 30px;
    flex-direction: row;
    justify-content: space-evenly;
  }

  .two img {
    max-width: 45%;
  }
  
  .numberrow {
    flex-direction: row;
    justify-content: space-evenly;
  }
  
}

