@import url("https://fonts.googleapis.com/css2?family=Abyssinica+SIL&family=Caveat&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Poppins:wght@400;500&family=Sour+Gummy:wght@100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

p {
  font-size: 1rem;
}

body {
  font-family: "Abyssinica SIL", serif;
  font-weight: 400;
  font-style: normal;
  background-image: url(./img/background.jfif);
  height: 100vh;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 4.5rem;
  /* height: 100%; */
}
.wrapper {
  background-color: #dce4c9;
  color: #e07b39;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0px 4px 100px rgba(1, 255, 179, 0.5);
  max-width: 1100px;
  margin: 0 2rem;

  /* height: 100%; */
}
header {
  text-align: center;
}
header .desc {
  font-size: 3.5rem;
}
header .title {
  font-size: 5rem;
  color: #2a3663;
}
main .container {
  padding: 2rem 0;
}
.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  /* margin: 2rem 0; */
}
.icon .dic {
  margin-right: 1rem;
}
i {
  font-size: 2rem;
  color: #2a3663;
}
a {
  text-decoration: none;
  cursor: pointer;
}
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* background-color: #0c4b6f; */
  color: #2a3663;
}
footer .author {
  margin-top: 10px;
  background-color: #e07b39;
  color: #091057;
  border-radius: 10px;
  padding: 4px 12px;
}
@media (max-width: 700px) {
  header .desc {
    font-size: 1.5rem;
  }
  header .title {
    font-size: 2.5rem;
  }
  i {
    font-size: 0.5rem;
  }
  .icon {
    margin-bottom: 0.5rem;
  }
  .icon .dic {
    margin-right: 0.5rem;
  }
  p {
    font-size: 0.75rem;
    font-weight: bold;
  }
}
