/* 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." */


#marquee {
  text-align: center;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

#marquee h1 {
  display: inline-block;
  padding-left: 100%;
  font-family: arial;
  font-size: 2rem;
  color: lightpink;
  text-shadow: 0 0 5px #bb00ff, 0 0 10px #bb00ff, 0 0 20px #bb00ff;
  animation: scroll-left 10s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

body {
  background-image: url('images/PICT0686.JPG');
  background-repeat: no-repeat;
  background-position: fixed;
  background-size: cover;
}


a:hover {
  /*cursor:url(Cookie.cur), pointer;*/
}

html {
  font-size: 22px;
}

.card {
  color: pink;
  margin: 0 auto;
}

.top {
  float: none;
  margin: 2rem;
  text-align: center;

}

.bottom {
  float: none;
  padding:0.5rem;
  text-align: center;
}

#menu {
  background:none;
  padding: 0.5rem;
}

.hover-opacity:hover {
    opacity: 0.7; /* 0 = fully transparent, 1 = fully opaque */
    transition: opacity 0.3s ease; /* smooth fade */
}

.stuff {
  display: inline;
}

.cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  padding: 0px;
}

.text-overlay {
  text-align: left;
  color: hotpink;
  background-color: black;
  font-size: 12px;
}

@media (min-width: 600px) {
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (min-width: 900px) {
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

#footer {
  text-align: left;
  color: hotpink;
  background-color: black;
}