body {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  background-color: #000;
}

.centered {
  width: 700px;
  height: auto;
  background-color: #141010;
  color: white;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  margin: 20px auto;
}

.centered li {
  text-align: left;
}

.img {
  width: 100%;
  margin-bottom: 20px;
}
.img img {
  width: 100%;
}

.text {
  margin-bottom: 20px;
}

.btn {
  width: 300px;
  margin-bottom: 20px;
}
.btn a {
  padding: 10px;
  background-color: #05af41;
  color: #fff;
  text-decoration: none;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 2px solid #fff;
  text-transform: uppercase;
}
.btn a:hover {
  background-color: #099339;
  transition: all 0.3s;
}

.contacts {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.contacts-item a {
  display: flex;
  justify-content: flex-start;
  text-decoration: none;
  align-items: center;
}
.contacts-item a svg {
  margin-right: 15px;
  height: 50px;
}
.contacts-item a span {
  font-size: 30px;
  color: #fff;
}

@media screen and (max-width: 740px) {
  body {
    padding-left: 15px;
    padding-right: 15px;
  }
  .centered {
    width: 100%;
  }
  .contacts {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
  }
  .contacts-item a {
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .contacts-item a svg:last-child {
    margin-right: 0;
  }
}/*# sourceMappingURL=style.css.map */