/* -------------------------------------------------------------------------- */
/*                                   Imports                                  */
/* -------------------------------------------------------------------------- */
/* Import Poppins from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');


/* -------------------------------------------------------------------------- */
/*                                root elements                               */
/* -------------------------------------------------------------------------- */
:root {
    --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}


html, body {
    font-family: var(--font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    width: 100vw;
    height: 100vh;
    background-color: black;
    color: white;
}


/* -------------------------------------------------------------------------- */
/*                                  elements                                  */
/* -------------------------------------------------------------------------- */
.home {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(50, 50, 50, 0.75);
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
}


.home-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.home-img {
    padding: 10px;
    background-color: rgb(124,178,224);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-img img {
    border-radius: 100%;
}


.bubble {
    background-color: rgb(25, 25, 25, 0.75);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 64px;
    padding: 16px 24px;
    margin: 4px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}
.bubble:hover {
    background-color: rgb(50, 50, 50, 0.75);
}
.bubble span.bubble-description {
    font-weight: 400;
    color: gray;
}


footer {
    background-color: rgb(25, 25, 25, 0.75);
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 90vw;
    border-radius: 32px;
    margin-top: 50px;
    padding: 10px;
    transition: background-color 0.3s ease;
}
footer:hover {
    background-color: rgb(50, 50, 50, 0.75);
}
footer a {
    color: cornflowerblue;
    text-decoration: none;
    margin: auto;
}
footer a:hover {
    color: white;
}


/* -------------------------------------------------------------------------- */
/*                                 Animations                                 */
/* -------------------------------------------------------------------------- */
@keyframes animate-up {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-up {
  /* Ensure the element starts in its final state so it doesn't "snap" after the animation */
  opacity: 0; 
  /* Apply the animation */
  animation-name: animate-up;
  animation-duration: 0.5s; 
  animation-timing-function: ease-out; 
  animation-fill-mode: forwards; 
  animation-delay: 0.1s; 
}