
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Italiana&display=swap');
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
    font-family: "Lexend Deca", sans-serif;;
      height: 100vh;
      /* background: rgba(103, 56, 22, 0.55); */
      mix-blend-mode: hard-light;
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
      overflow: hidden;
      
    }
     body::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: -1;
      background-image: url("./images/background.jpg");
      background-size: cover;
      background-position: bottom;
      /* animation: zoomDeep 60s linear forwards; */
      background-repeat: no-repeat;
    }
     @keyframes zoomDeep  {
      0% {
        transform: scale(1);
      }
      100% {
        transform: scale(2.5); /* Zoom depth */
      }
    }
    .wrapper{
        height: 100vh;
        width: 100vw;
        padding: 0 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .logo {
      font-size: 1.8rem;
      letter-spacing: 3px;
      animation: fadeIn 1.5s ease forwards;
    }


    .logo  img{
      width: 500px;
    }

    h1 {
      font-size: 10rem;
      font-weight: 400;
      margin: 2rem 0;
      transition: transform 0.2s ease;
         max-width: 75rem;
    line-height: 10rem;
      font-family: "Italiana", sans-serif;
      animation: fadeIn 2.5s ease forwards;
    }

    p {
      font-size: 1.4rem;
      margin: 0 auto 5rem;
      animation: fadeIn 2.2s ease forwards;
      line-height: 1.8rem;
      font-weight: 300;
    }

    a.button {
       background: var(
    --bgraidiant,
    linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(130, 112, 92, 1) 100%)
  );
    border-radius: 30px;
        letter-spacing: 0.5px;
      padding: 20px 30px;
      border: 0;
      font-size: 1.4rem;
      font-weight: 500;
      color: white;
      cursor: pointer;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
      animation: fadeIn 2.5s ease forwards;
      text-decoration: none;
      transition: all 0.1s ease;
    }

    a.button:hover {
      transform: translateY(4px);
      box-shadow: 0 2px #7b7b7b;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    @media screen and (max-width: 1779px) {
      .logo img{
        width:400px;
      }
      h1 {
        font-size: 8rem;
         max-width: 60rem;
        letter-spacing: 1px;
        line-height: 8rem;
      }
      p {
        font-size: 1.2rem;
      }
      a.button {
      padding: 18px 30px;
      font-size: 1.2rem;
    }
      body::before {
        background-size: cover;
      }
    }

    @media screen and (max-width: 1280px) {
      .wrapper {
    padding: 0 3rem;
      }
      .logo img{
        width: 280px;
      }
      h1 {
        font-size: 4rem;
        margin: 2rem 0 1.5rem;
        max-width: 22rem;
        line-height: 5rem;
      } 
       a.button {
      font-size: 1rem;
    }
      p{
        margin: 0 auto 3rem;
      }
      body::before {
        background-size: cover;
      }
    }