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

body {
  background-color: #3988cd; 
  color: #252525; 
  font-family: 'Raleway', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
  }
  
h1 {
  font-family: 'Merriweather';
  text-align: center;
  font-weight: 600;
  font-size: 5em;
  color: #252525;  
  }

p {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1.3em;
  color: #252525; 
}




a {
  color: #585858;
  font-weight: 600;
  font-size: 5em
}

a:hover { 
  color: #A2A2A2;
  text-decoration: underline; }
  
.fade-in {
  opacity: 0;
  animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}



#intro {
  margin-left: 350px;   
  margin-top: -300px;    
}


        
#intro2 { margin-left: 0px;  
          margin-top: -130px;
        }
        
#intro3 { margin-left: 0px;   
          margin-top: 200px;
        }
        
.lists-container { display: flex;
                  justify-content: space-around;
                  align-items: stretch;
                  margin-top: 50px;
                  gap: 40px
                }
                
                
.likes li::before {
  content: "- ";
  color: #9fd3c7;
  font-size: 1.2em;
  margin-right: 8px;
}

.dislikes li::before {
  content: "-";
  color: #c94c4c;
  font-size: 1.2em;
  margin-right: 8px;
}


.likes, .dislikes {
  flex: 1;
  list-style: none;
  padding: 0;
  font-size: 2rem;
  border: 10px solid #BCDDFF;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  background-color: transparent;
  }                
                
.large1 li{
  
  font-size: 40px;
  color: #9fd3c7
  
  
  }
  
.large2 li{
  
  font-size: 40px;
  color: #c94c4c
  
  
  }
  

.likes, .dislikes {
  opacity: 0;
  transform: translateX(-100px); 
  transition: all 2s ease;
}


.dislikes {
  transform: translateX(100px);
}

.likes li { text-shadow: 2px 2px 4px rgba(0,0,0,0.4); }
.dislikes li { text-shadow: 2px 2px 6px rgba(0,0,0,0.6); }
.show {
  opacity: 1;
  transform: translateX(0);
}

.likes { 
  font-family: 'Playfair Display',serif;
  margin-right: 10px;
  background-color: transparent;
  color: #f5e1a4;
}
.dislikes {
  font-family: 'Special Elite', cursive;
  margin-right: 10px;
  background-color: transparent;
  color: #f5e1a4;
  }