html, body {
    height: 100%;
    
}
/* Use flexbox to push footer to the bottom */
.wrapper {
    
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    
}
.content {
    flex: 1;
    margin-bottom: 130px;
    margin-top: 64px;
}

.app-footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    /* margin-top: 130px; */
}

.image-container {
    /* width: 300px; */
    height: 400px; 
    overflow: hidden; /* Hide overflowing parts */
    position: relative;
}

.prompt-thin {
    font-family: "Prompt", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .prompt-extralight {
    font-family: "Prompt", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .prompt-light {
    font-family: "Prompt", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .prompt-regular {
    font-family: "Prompt", sans-serif !important;
    font-weight: 400;
    font-style: normal;
  }
  
  .prompt-medium {
    font-family: "Prompt", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .prompt-semibold {
    font-family: "Prompt", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .prompt-bold {
    font-family: "Prompt", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .prompt-extrabold {
    font-family: "Prompt", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .prompt-black {
    font-family: "Prompt", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .prompt-thin-italic {
    font-family: "Prompt", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .prompt-extralight-italic {
    font-family: "Prompt", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .prompt-light-italic {
    font-family: "Prompt", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .prompt-regular-italic {
    font-family: "Prompt", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .prompt-medium-italic {
    font-family: "Prompt", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .prompt-semibold-italic {
    font-family: "Prompt", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .prompt-bold-italic {
    font-family: "Prompt", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .prompt-extrabold-italic {
    font-family: "Prompt", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .prompt-black-italic {
    font-family: "Prompt", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
  
  .blurNav {
    /* 
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
     opacity: 0.95; */
     
    background-color: rgba(184, 50, 128, 0.6) !important;
    /* background-color: rgba(123, 63, 0, 0.96) !important; */
    color: #ffffff;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    /* background-color: rgb(72, 61, 139); */
    z-index: 999;

}

.blurFooter {
    /* 
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
     opacity: 0.95; */
     
    background-color: rgba(246, 135, 179, 0.5) !important;
    /* background-color: rgba(123, 63, 0, 0.96) !important; */
    color: #ffffff;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    /* background-color: rgb(72, 61, 139); */
    z-index: 999;

}

.card {
    transition: box-shadow 0.3s ease-in-out;
}

.card:hover {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
