@import url("https://fonts.googleapis.com/css2?family=Allura&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html,
body {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  background-color: #fffbf4;
  color: #11120d;

  header {
    position: sticky;
    top: 7px;
    display: flex;
    justify-content: center;
    align-items: center;

    nav {
      width: 98%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0px 15px;
      border: 1px solid #565449;
      border-radius: 100px;
      background-color: #d8cfbc8f;
      backdrop-filter: blur(5px);

      .logo {
        font-family: "Allura";
        font-size: 40px;
        font-weight: 400;
        font-style: normal;
        margin-bottom: -5px;
      }

      .obj {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        width: 40%;
        a {
          text-decoration: none;
          color: #11120d;
        }
      }
    }
  }
  main {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    h1 {
      margin-top: 20px;
      margin-bottom: 5px;
      line-height: 1.8;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    h3 {
      margin-bottom: 20px;
      line-height: 1.8;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #565449;
    }

    section {
      width: 90%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      margin-bottom: 20px;
      p {
        text-indent: 20px;
        line-height: 1.8;
      }
      #desc {
        margin-bottom: 20px;
      }
    }
  }

  footer {
    position: relative;
    margin: 0;
    padding: 50px 10px;
    background-color: #565449;
    bottom: 0;
    p {
      color: #fffbf4;
    }
  }
}

@media screen and (max-width: 425px) {
  html,
  body {
    header {
      nav {
        flex-direction: column;
        justify-content: center;
        .logo {
          font-size: 40px;
          margin-bottom: 1px;
        }
        .obj {
          width: 100%;
          margin-bottom: 5px;
        }
      }
    }
  }
}
