/* 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." */
html {
  background-image: url(https://aaa-archives.neocities.org/AAA%20Background%20v2.jpg);
  background-repeat: repeat;
  animation: collage-anim 45s linear infinite;
  color: black;
  font-family: "footlight";
  letter-spacing: 2px;
}

@keyframes collage-anim {
  0% {background-position: 0px 0px;}
  100% {background-position: -1926px 0px;}
}

body {
  border: 5px;
  text-align: center;
}

.textBlurb {
  text-align: justify;
  text-justify: inter-word;
  width: 900px;
  padding-left: 55px;
}

.chartBlurb {
  text-align: justify;
  text-justify: inter-word;
  width: 440px;
}

.bullets {
  padding-left: 75px;
  padding-right: 75px
}

.chartPanel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.chart {
  width:440px;
  padding-left: 55px;
}

.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #F88379;
}

.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}

.container {
  background-color: beige;
  width: 1020px;
  border-radius: 25px;
  margin: auto;
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 25px;
  filter: drop-shadow(10px 5px 4px #333333);
}



/* Style for Archive portion */ 
  .grid {
    display: grid;
    grid-template-columns: 198px 198px 198px 198px 198px;
  /* Every rotations of someliers requires me to add another row to this template */
    grid-template-rows: auto;
    gap: 10px 12px;
    justify-content: center;
  }
  
  .thumbnail {
    width: 198px;
    height: 198px;
  }
  
  .overlay-text {
    width: 198px;
    height: 198px;
    background-image: radial-gradient(#F88379, #F88379 0%);
    text-decoration: none;
    color: white;
    position: absolute;
    justify-content: center;
    top: 0px;
    margin-bottom:-425px;
    opacity: 0.0
  }
  
  .overlay-text:hover{
    opacity: 0.8;
  }
  
  .album:hover{
    transform: scale(0.95);
  }



/* Style for Comparative Search */
  .grid-container {
    width: 100%;
    height:650px;
    overflow-x: scroll;
    overflow-y: scroll;
  }

  table {
    border-collapse: collapse;
  }  
  
  th {
    border-bottom: 1px solid #ddd;
    padding: 3px;
    height:50px;
    background-color: #F88379;
  }
  
  td {
    min-width:100px;
    border-bottom: 1px solid #ddd;
    padding: 3px;
    height:50px;
  }
  
  table td.name, table th.name {
    min-width: 200px;
  }
  
  tr:hover {
    background-color: #F88379;
    cursor: pointer;
  }
  
  
  