@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    background-color: #0f0f0f;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer {
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.8;
}

.quote-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  perspective: 1000px;
}

.quote-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  perspective: 1000px;
}

#quote {
  font-size: 1.1rem;
  color: #fff;
  transition: transform 0.6s ease, opacity 0.4s ease;

}