body {
  background-color: rgb(69, 73, 79);
  color: #fff;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 15px 15px 150px 15px;
}

header {
  text-align: center;
  padding-bottom: 20px;
}

header h1 {
  padding: 0;
  margin: 0;
  font-size: 46px;
  font-family: Ubuntu;
}

.listApp {
  margin: auto;
}

.ListApp__items {
  display: grid;
  grid-template-columns: repeat(2, 500px);
  grid-gap: 20px;
  margin: 0 auto;
  justify-content: center;
}

.listApp ul {
  padding: 0;
}

.listApp li {
  list-style: none;
  margin-bottom: 10px;
  text-align: center;
}

.listApp li a {
  display: block;
  border: 2px solid #fff;
  border-radius: 20px;
  text-decoration: none;
  color: #fff;
  font-size: 30px;
  font-family: Ubuntu;
  padding: 10px;
}
.listApp li a:hover {
  background-color: #858b95;
  box-shadow: 0px 4px 25px rgb(94 233 203);
}

.listApp li a:active {
  border: 3px solid #cbcad0;
  box-shadow: 0px 4px 25px rgb(94 233 203);
}

@font-face {
  font-family: Ubuntu;
  src: url(fonts/Ubuntu/Ubuntu-Regular.ttf);
}

@media (max-width: 1050px) {
  .ListApp__items {
    grid-template-columns: 800px;
  }

  .listApp li a {
    font-size: 70px;
    padding: 30px;
  }
}
