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

/*Palette: Lazy Garden Brunch - https://coolors.co/palette/f6f7fb-3eb489-fa8072-93c572-edc9af*/
:root {
  --ghost-white: #F6F7FB;
  --mint-leaf: #3EB489;
  --salmon: #FA8072;
  --willow-green: #93C572;
  --desert-sand: #EDC9AF;
}

body {
  background-color: var(--willow-green);
  background-image: url(ivy.webp);
  color: black;
  font-family: Verdana;
}

.title {
  color: var(--mint-leaf);
  font-family: soul-clock;
  font-size: 50pt;
}

.heading {
  color: var(--mint-leaf);  
  font-size: 20pt;
}

hr {
  display: block;
  border: 0px;
  height: 25px;
  margin: 0px;
  background-image: url('/flourish.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

table, th, tr, td {
  border-collapse: collapse; 
  border-color: var(--salmon);
}

table {
  background-color: var(--desert-sand); 
  width: 67%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  table-layout: fixed;
}

td {
  border-style: ridge;
  padding: 5px;
}

.navbar ul{
  
}

.marquee {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.marquee p {
  display: none;
  padding-left: 100%;
}

.marquee p.active {
  display: inline-block;
  animation: marquee 15s linear;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee p.active {
    animation: none;
  }
}

@font-face {
  font-family: bosque;
  src: url("/fonts/Bosque-9z0K.ttf");
}

@font-face {
  font-family: caribbean-tool;
  src: url("/fonts/Caribbeantool-GZwO.otf");
}

@font-face {
  font-family: deannas-ivy;
  src: url("/fonts/DeannasIvy-5XEV.ttf");
}

@font-face {
  font-family: hidden-vines;
  src: url("/fonts/JiHiddenVines-PZZB.ttf");
}

@font-face {
  font-family: lsleaves;
  src: url("/fonts/Lsleaves-x8Bj.ttf");
}

@font-face {
  font-family: napoli;
  src: url("/fonts/Napoli-2OGd.ttf");
}

@font-face {
  font-family: soul-clock;
  src: url("/fonts/SoulClockRegular-vnejZ.ttf");
}
