
@tailwind base;
@tailwind components;
@tailwind utilities;

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    background: transparent;
}
body{
    background: rgb(30,30,30);
    color: white;
    overflow: hidden;
    overflow-y: scroll;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
section{
    /* height:70vh; */
    /* margin-top: 60px; */
    scroll-snap-align: start;
    min-height: 100vh;
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
}
.container{
    scroll-snap-type: y mandatory;
    height:100vh;
    overflow-y: scroll;
}
/* Blur effect for the whole app content */
.blurred {
    filter: blur(5px);
  }
  
  /* Popup backdrop */
  .popup-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
  }
  
  /* Popup styling */
  .popup {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    max-width: 90%;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 20;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  /* Animation for popup */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }