body,
input,
select,
textarea {
  font-family: "Open Sans", sans-serif;
}
 
body {
  background-color: #101820;
}

h1,
h2,
h3,
h4,
h5,
h6,
button {
  font-family: "Work Sans", sans-serif;
}

main {
  background-color: #101820;
  display: flex;
  max-width: 1200px;

  padding: 0 2rem;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

.buttonInstaller {
  background-color: #2c06c4;
  box-shadow: 4px 4px 15px 0px rgba(19, 53, 178, 0.37);
  width: 10rem;
  height: 3rem;
  border: none;
  border-radius: 15px;
  margin-top: 1rem;

}
.buttonInstaller a {
  color: #fff;
  font-weight: 700;
  font-size: 13pt;
  text-decoration: none;
}
.buttonInstaller:hover{
    background-color: #3300ff;
    transition: 2s;
}
.appIconImg {
  object-fit: contain;
  width: 90px;
  height: auto;
}
.divAppInformations {
  display: block;
  padding-left: 2rem;
  align-items: center;
  justify-content: center;
}
.appName {
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-align: center;
}
.appDescription {
  color: #fff;
  font-weight: 400;
  font-size: 11pt;
}
.appCard {
  background-color: #1d1d1d;
  width: 600px;
  display: flex;
  padding: 2rem;
  border-radius: 15px;
  flex: 1 500px;
}
.container {
  width: 100%;
  height: 100%;
}
section {
  margin-top: 3rem;
  margin-bottom: 10rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-evenly;
}
@media screen and (max-width: 700px) {
  .appIconImg {
    width: 50px;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .divAppInformations {
    margin: 0;
    padding: 0;
  }
  .appCard {
    display: block;
    justify-content: center;
    align-items: center;
  }
}
