@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    font-family: "Rubik", sans-serif;
}


.fade-out {
    animation: fadeOut 1s forwards;
}

.fade-in {
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}




.spinner-border {
    border-width: 4px;
    border-style: solid;
    border-color: transparent;
    border-top-color: white;
    border-radius: 50%;
}

.result-container {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.button-container {
    position: absolute;
    bottom: -40px; 
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem; 
    z-index: 10;
}

.btn-small {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.2);
    color: #ffffff;
    transition: background-color 0.3s, border-color 0.3s;
    height: 100%;
    width: auto;
    max-width: 100%;
}

.btn-small:hover {
    background-color: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-small:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.btn-small:active {
    background-color: rgba(0, 0, 0, 0.5);
}

* {
    scrollbar-width: none; 
    -ms-overflow-style: none;
}


html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: #2a1c5c
}


@media only screen and (max-width: 767px) {
    img[alt="App screenshot"] {
      display: none;
    }
  }
  


.fade-in-middle {
    animation: fadeInMiddle 0.5s ease-in-out forwards;
    opacity: 0;
  }
  
  @keyframes fadeInMiddle {
    0% {
      opacity: 0;
      transform: scale(0.5);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  


.heading-container {
  position: relative;
  display: flex;
  justify-content: center; 
  align-items: center; 
  text-align: center;
}
