@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter";
  font-size: 0.95em;
  width: 100vw;
  height: 100dvh;
  background-image: url(../imgs/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

header{
  font-size: 0;
  & h1 {
    font-size: 0;
  }
  & p {
    font-size: 0;
  }
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;

  & .content {
    display: flex;
    justify-content: center;
    border-radius: 15px;
    background-color: white;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    border-bottom: 8px solid #4f642b;
    /*
    background: rgba(255, 255, 255, 0.65);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    */

    & .box {
      width: 100%;
      gap: 25px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      padding: 20px;

      & .logo {
        padding-top: 20px;
        margin-bottom: 5px;
        height: 65px;
      }

      & .options {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        list-style: none;
        width: 100%;
        color: darkgreen;

        & li {
          width: 100%;

          .item {
            border: 1px solid darkgreen;
            display: flex;
            align-items: center;
            gap: 12px;
            border-radius: 15px;
            padding: 8px 16px;
            cursor: pointer;
            transition: 0.5s;
            text-decoration: none;
            color: darkgreen;

            & .icon {
              font-size: 1.5em;
            }

            & .click {
              & h2 {
                font-size: 1.25em;
              }

              & p {
                font-size: 0.75em;
              }
            }

            &:hover {
              background-color: #8cac3c;
              border: 1px solid #8cac3c;
              color: white;
            }
          }
        }
      }

      & .icons {
        font-size: 1.8em;
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center;

        & .icon {
          /* margin-right: 0.5em; */
          cursor: pointer;
          font-size: 1.4rem;
        }

        & .link {
          color: darkgreen;
          text-decoration: none;
          transition: 0.5s;
          &:hover {
            color: #8cac3c;
          }
        }

        
      }
    }
  }
}


@media(max-width: 480px){
  main{
    padding: 20px;
  }
}