/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {
  background-image: url(https://t0bi1.neocities.org/TobiiBG.jpg);
  color: Black;
  font-family: 'Fira Sans'; 
}

.flex-container {
  display: flex; /* or inline-flex */
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  background: linear-gradient(to right, #6cff45, #36ffc9);
}

.flex-item{
  /* it shows warnings but its fiiiiiiiine */
  order: var(--order, 1);
  flex-grow: var(--grow,1);
  align-self: var(--align,auto);
}

.wrapper {
  display: flex;
  flex-flow: row wrap;
}

.gradient-panel {
  background-image: linear-gradient(to right top, #75BC64, #66C4A9); /* A subtle blue gradient */
}

.fade-in {
  opacity: 1; /* Fully visible */
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out; /* Fade out over 2 seconds */
}

.fade-out {
  opacity: 0;
  visibility: hidden; /* Hide element after fade */
  transition: opacity 10s ease-in-out, visibility 10s ease-in-out; /* Fade out over 2 seconds */
}

 
 