.root {
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: inherit;
  display: inline-block;
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  border: 0;
}

ul,
ol {
  list-style: none;
}
/* header */

.container {
}

.header {
  text-align: center;
  background-image: url(images/bg-header-desktop.png);
  width: 100%;
  background-size: cover;
  height: 100%;
}

.header__logo {
  padding: 5rem 0 2rem;
}

.h1__header {
  font-size: 30px;
  padding-bottom: 1rem;
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: bold;
}

.content__header {
  font-size: 19px;
  color: rgb(161, 161, 156);
  padding-bottom: 2rem;
  line-height: 2.5;
}

.ios {
  margin: 0 1.5rem;
  background: #34e38c;
  border-radius: 55px;
  box-shadow: 0 10px 20px rgba(77, 156, 9, 0.4);
  text-decoration: none;
  font-size: 2rem;
  padding: 1rem;
  color: aliceblue;
  transition: ease;
}

.mac {
  background: #6c25ef;
  border-radius: 55px;
  box-shadow: 0 10px 20px rgba(53, 9, 228, 0.4);
  text-decoration: none;
  font-size: 2rem;
  padding: 1rem;
  color: aliceblue;
}

.ios:hover,
.mac:hover {
  transform: translateY(-10px);
}
.h2__header {
  padding-bottom: 1.5rem;
  padding-top: 3rem;
  font-size: 30px;
  font-family: "Bai Jamjuree", sans-serif;
  color: rgb(48, 46, 46);
  font-weight: bold;
}
/* end header */
/* body */
.body__1 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto;
  column-gap: 4rem;
  align-items: center;
  /* justify-content: start; */
}
.body__img {
  width: 100%;
}

.body__content {
  align-items: center;
}

.body__text {
  text-align: center;
}

.body2__image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 3rem;
}
.icons {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  gap: 2rem;
  margin-top: 2rem;
}

.paper__photo {
  width: 40px;
}

.images {
  display: flex;
  justify-content: center;
  gap: 8rem;
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.text__end {
  text-align: center;
  margin-bottom: 5rem;
}

/* end body */
/* footer */
.footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  background-color: rgba(244, 238, 238, 0.818);
  gap: 3rem;
  padding: 3rem;
  line-height: 3rem;
  height: 200px;
}
.FF:hover {
  color: #03a33e;
}
.social {
  display: flex;
  gap: 1.3rem;
}
