@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

   
/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
   font-family: "Outfit", sans-serif;
}
  


body {
  background-color: #ffffff; /* white background */
  color: #000000; /* black text by default */
  min-height: 100vh;
}
/* Buttons */
button {
  background-color: #e67e22; /* orange button */
  border: none;
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  margin: 0 0.5rem;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

button:hover {
 
  background-color: #000000;
  color: #e67e22;
}
.btn:hover {
  
  background-color: #000000;
  color: #e67e22;
}
/* ===== Back Arrows ===== */
.arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  color: black;
  margin: 10px 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  width: fit-content;
}

.arrow:hover {
  transform: scale(1.02);
  background: #e67e22;
  padding: 4px 8px;
  border-radius: 4px;
}
/* General Section Styling */
section {
  display: none;
  padding: 100px 20px 20px;
}

/* Show main content when logged in */
#home-section,
#flashcard-section,
#library-section,
#custom-library-section,
#custom-flashcard-section,
#vocab-section {
  padding-top: 30px;
}
.sound-highlight{
  border-radius: 5px;
  background-color: #cf610f;
}
/* Navbar */
nav {
  background-color: #000000;  /* black navbar */
  color: #ffffff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e67e22;
}

.nav-container{
  display: flex;
  justify-content: space-between;
}
.nav-items{
  display: flex;
  
  align-items: center;
}
/* App name */
nav .app-name {
  font-size: 2rem;
  font-weight: bold;
  color: #e67e22; /* orange for app name */
}

/* Navbar menu */

  nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  position: relative;
  
}
nav ul li.dropdown {
  position: relative;
}
nav ul li .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* right below parent li */
  left: 0;
  background-color: #000000; /* black background */
  padding: 0.5rem 0;
  border-radius: 0 0 5px 5px;
  min-width: 150px;
  z-index: 1000;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
nav ul li.dropdown:hover .dropdown-menu {
  display: block;
}

/* Dropdown menu items */
nav ul li .dropdown-menu li {
  width: 100%;
}

/* Dropdown links styling */
nav ul li .dropdown-menu li a {
  color: #ffffff;
  padding: 0.5rem 1rem;
  display: block;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

/* Hover effect for dropdown links */
nav ul li .dropdown-menu li a:hover {
  background-color: #e67e22; /* orange highlight */
  cursor: pointer;
}
nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
  color: #e67e22; /* orange on hover */
  cursor: pointer;
}
#nav-profile{
  font-size: 1.5rem;
  transition: color 0.17s ease-in-out;
}
#nav-profile:hover{color: #e67e22;
cursor: pointer;}


/* Flashcard container */
section {
  max-width: 1300px;
  margin: 2rem auto;
  background-color: #ffffff; /* white */
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  /* border: 2px solid #e67e22;  */
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 80vh;
}


#flashcard-section {
  padding: 20px;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.category-picker {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: -20px;
  width: 100%;
  justify-content: center;
 
  

}

#card {
  width: 300px;
  height: 350px;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 10px;
  margin: 10px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#card-image {
  max-height: 200px;
  object-fit: contain;
  margin-top: 10px;
}

.card-buttons {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.card-buttons button {
  padding: 8px 16px;
  font-size: 1rem;
  background: #222;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}




/* LIBRARY SECTION#---------------------------------- */


/* ===== Library List ===== */
#libraries-list{ margin-top: 10px;}
#libraries-list ul.library-li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  list-style: none;
  max-width: 500px;
  margin: auto;
}

/* ===== Library Items ===== */

#libraries-list ul.library-li li {
  background-color: #f1f1f1;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  text-align: center;
}

#libraries-list ul.library-li li:hover {
  background-color: #e0e0e0;
}

/* ===== Create Library Section ===== */



#library-section {
  padding: 40px 20px; /* Top space from fixed nav, plus horizontal padding */
  margin-top: 0;
  overflow: visible;
  height: auto;
  min-height: 100vh; /* Make sure it fills the screen height */
    display: none;

}
#create-library-section {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 60%;
  margin: auto;
      display: none;

}
.library-li li{
  list-style: none;
  cursor: pointer;
}

#create-library-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  max-width: 500px;
  justify-content: center;
  margin: auto;
}

#library-name-input {
  flex: 1 1 250px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}



/* ===== Flashcard Add Button Container ===== */
#btn-add-flashcard {
  margin-top: 10px;
}
#add-flashcard-btn {
  margin: auto;
}

/* ===== Add Flashcard Form ===== */
#add-flashcard-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 30px auto 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

#add-flashcard-form input {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* Save Flashcard Button */
#save-flashcard {
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  align-self: flex-start;
}

/* ===== Custom Flashcards Layout ===== */
#custom-flashcard-section{
  height: auto;
  padding: 40px 20px; /* Top space from fixed nav, plus horizontal padding */
  margin-top: 20px;
  overflow: visible;
  height: auto;
  min-height: 100vh;
  border: solid #e67e22 2px;
  max-width: 1200px;
}
#custom-flashcards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 30px auto;
  max-width: 1000px;
}
#add-flashcard-form input{margin-top: 5px;}
#save-flashcard {
  margin-top:5px
}

/* Each Flashcard */
.user-flashcard {
  background-color: #ffffff;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  width: 220px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.user-flashcard img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  margin-top: 10px;
  border-radius: 8px;
}
.icons-action{
  display: flex;
  justify-content: center;
  gap: 5px;
}
.delete-flashcard{
  /* font-size: 0.7rem; */
  padding: 5px;
  margin-top: 5px;
    color: #e67e22;
      font-size: 1.4rem;
}
.speak{
  color: #e67e22;
  font-size: 1.4rem;
  display: block;
  /* margin: auto; */
  position: relative;
  top: 10px;
  
}
/* ===== Vocab List ===== */


#vocab-list {
  margin-top: 10px;
  padding-left: 20px;
  min-width: 500px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

#vocab-section {
  /* margin-top: 40px; */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  /* padding: 20px; */
  border: 2px solid #e67e22;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  height: auto;
}

#vocab-form {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

#vocab-form input {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 45%;
  min-width: 150px;
}

#vocab-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
}

#vocab-table th,
#vocab-table td {
  border: 1px solid #ddd;
  padding: 10px;
}

#vocab-table th {
  background-color: #f7f7f7;
  color: #000;
}

#vocab-table td button {
  background-color: #e67e22;
  border: none;
  padding: 6px 10px;
  color: #fff;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
}

#vocab-table td button:hover {
  background-color: #000;
  color: #e67e22;
}
#add-vocab-word{margin-top:8px;}

.customsection-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0;
    justify-content: center;
  align-items: center;
}

/* ---------------vocab------- */
#vocab-form{
  display: none;
}
.icons-action-vocab{
  display: flex;
  gap:9px;
justify-content: center;}
.speak-2{
  font-size: 1.4rem;
  position: relative;
  top: 0px;
}




/* NAVBAR */

/* Auth Sections */
.auth-section {
  max-width: 400px;
  margin: 100px auto;
  background-color: #111111;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.auth-section h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #e67e22;
}

.auth-section input {
  width: 100%;
  padding: 0.8rem;
  margin: 0.5rem 0;
  border: none;
  border-radius: 6px;
  background: #222;
  color: #fff;
}

.auth-section button {
  width: 100%;
  padding: 0.8rem;
  background-color: #e67e22;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 1rem;
}

.auth-section button:hover {
  background-color: #cf610f;
}

.auth-section p {
  text-align: center;
  margin-top: 1rem;
  color: #ccc;
}

.auth-section a {
  color: #e67e22;
  text-decoration: none;
}

.auth-section a:hover {
  text-decoration: underline;
}

/* Welcome Text Styling */
.welcome-text {
  color: #cccccc;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1.5rem;
}



/* Responsive */
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .auth-section {
    margin: 120px 1rem;
  }
}
/* ------------------ */
#home-section {
  /* background-color: #000; */
  padding: 15px 20px;
  color: white;
  /* overflow: hidden; */
  position: relative;
  background-image:url('imgs/wave background home.svg');
  object-fit:contain;
  object-position: center;
  height: 87vh;
  margin-bottom: 0px;
   
}
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 50px;
  margin: auto;
  align-items:center;

}
 .home1{
  display: flex;
  margin:auto;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap; /* Makes it responsive on smaller screens */
  gap: 30px;
   max-width: 1200px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
  color: black;

}
.hero-content{
  /* flex: 1 1 300px;
  min-width: 300px; */
   /* text-align: left; */
  padding-right: 40px;
  align-items: center;
}

.highlight {
  background-color: #e67e22;
  padding: 4px 12px;
  border-radius: 50px;
  color: #000;
}

.tagline {
  font-size: 1.1rem;
  margin-top: 16px;
  opacity: 0.8;
   color: #000;
   margin-bottom: 7px;
}


.head1{
  margin-top: 6px;
}
.hero-image img {
  
  position: relative;
  /* right:10px; */
  margin:auto;
  height: auto;
  max-width: 100%;
  height: auto;
  transform: translateX(20px);
  transform: translateY(-22px)
}
.cta-btn{
  margin-top: 7px;
  border-radius: 50px;
  margin: auto;
}
.hero-image {
  flex: 1 1 400px;
  text-align: right; /* Align image to the right */
  padding-left: 50px; /* Push it further to the right */
}

  #slider-section {
  height: 50vh;
  margin-top: 5px;
}

.infinite-slider-section {
  overflow: hidden;
  background: #000;
  padding: 30px 0px;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

/* 🚀 Scrolling track */
.slider-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
  gap: 30px;
}

/* 📦 Individual Slide */
.slide {
  flex: 0 0 450px;
  height: 220px;
  background-color: #111;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.05), 
              0 4px 12px rgba(230, 126, 34, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  transition: transform 0.3s ease;
}

.slide:hover {
  transform: translateY(-5px);
}

/* ✍️ Text side */
.slide-text {
  flex: 1;
  text-align: left;
  padding-right: 15px;
}

.slide-text h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 8px;
}

.slide-text p {
  font-size: 0.95rem;
  color: #ccc;
}

/* 🖼️ SVG side */
.slide-svg {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-svg img {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

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


/* --------------------------- */
.learning-tools {
  display: flex;
  gap: 25px;
  padding: 5px 20px;
  justify-content: center;
  background-color: #fdfdfd;
}
.tool-container{
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.tool-card {
  width: 350px;
  min-height: 450px;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  color: #222;
  position: relative;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-6px);
}

/* Top Right Age Label */
.tool-age {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.8rem;
  font-weight: bold;
  color: #333;
  background: rgba(255,255,255,0.6);
  padding: 4px 10px;
  border-radius: 12px;
}


 .tool-video {
  width: 70%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* Unique Backgrounds */
.quiz {
  background-color:#e67e22;
}

.flashcards {
  background-color: #e67e22;
}

.library {
  background-color: #e67e22;
}



  
  .footer {
  background: #1a1a1a;
  color: #f0f0f0;
  padding: 20px 20px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-grid h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
}
.footer-grid li {
  margin-bottom: 6px;
}
.footer-grid a {
  color: #e67e22;
  text-decoration: none;
}
.footer-grid a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: #888;
}
footer .contact p{
  color:#e67e22;
  cursor : pointer;
}
footer .contact p:hover {
  text-decoration: underline;
}
.social-icons{
  display: flex;
  gap: 6px;
}
.social-icons i{ color: #e67e22;
font-size: 2rem;}
/* -----------------------------quiz--------------------- */
/* =========================
   PROFILE SECTION
========================= */
#profile-section {
  display: none; /* already controlled via JS */
  padding: 40px 20px;
  background-color: #f8f8f8;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-container {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 30px 40px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  margin: auto;
}

.profile-container h2 {
  font-size: 1.8rem;
  color: #000;
  margin-bottom: 20px;
  border-bottom: 2px solid #e67e22;
  display: inline-block;
  padding-bottom: 5px;
}

.profile-container p {
  font-size: 1.1rem;
  margin: 10px 0;
  color: #333;
}

.profile-container strong {
  color: #000;
}





/* -------------------------PROFILE--------------------------------- */
#quiz-section {
  display: none; /* hidden by default */
  padding: 40px 20px;
  background-color: #fafafa;
  min-height: 100vh;
  box-sizing: border-box;
  height: auto;
}

.quiz-container {
  max-width: 600px;
  margin: auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-height: 500px;
  height: auto;
}

.quiz-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
}

.quiz-library-name,
.quiz-progress {
  text-align: center;
  font-size: 1.5rem;
  color: #e67e22;
}

.quiz-question {
  margin: 30px 0 20px;
  text-align: center;
}

.quiz-question h3 {
  font-size: 24px;
  font-weight: bold;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.quiz-option {
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 8px;
  background-color: #e67e22;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
}

/* .quiz-option:hover {
  background-color: #e6e6e6;
} */

.quiz-feedback {
  text-align: center;
  font-size: 18px;
  margin-top: 20px;
  font-weight: bold;
  display: none;
}

.hidden {
  display: none;
}


 .next-ques{
  display: none;
 margin-top: 8px;
margin:auto}

.next-ques:hover {
  background-color: black;
  color: #e67e22;
}

#btn-create-library {
  margin-top: 15px;
}
.quiz-score{
  margin-top: 10px
}
.quiz-score-end{
  display: none;
}

.delete-vocab {
  font-size: 1.5rem;
  color: #e67e22;
}
.delete-library{
  font-size: 1rem;
  color: #e67e22;
  /* margin: auto;
  text-align: right; */
  position: relative;
  top: 5px;
}
.theLibName{
  font-size: 1.3rem;
}
.eachlib-li{
  display: flex;
  gap: 20px;
  justify-content: space-around;
}
/* ------------------------------------ */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #e67e22;
}

/* Media query for mobile screens */
@media (max-width: 768px) {
  /* nav.nav-items{display: none;} */
  #home-section {
  /* background-color: #000; */
  padding: 15px 20px;
  color: white;
  overflow: hidden;
  position: relative;
  /* s */
  height: 87vh;
  margin-bottom: 0px;
   
}

  nav .nav-items{
    display: none; /* hide nav links initially */
    flex-direction: column;
    background-color: #000;
     position: absolute;
    top: 60px;
     left: 0;
    width: 100vw;
    border-radius: 5px;
    padding: 10px 0;
    z-index: 1000;
    height: 100vh;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease-in-out;

  }
   

  nav ul.nav-items li {
    text-align: right;
    margin: 10px 0;
  }
nav ul li.dropdown {
  position: relative;
}
nav ul li .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* right below parent li */
  background-color: #000000; /* black background */
  padding: 0.5rem 0;
  border-radius: 0 0 5px 5px;
  min-width: 150px;
  z-index: 1000;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  margin: auto;
}
nav ul li.dropdown:hover .dropdown-menu {
  display: block;

  /* nav ul.nav-items li .dropdown-menu {
    /* position: static;  */
    box-shadow: none;
    padding: 0;
    border-radius: 0;
  } */

  nav ul.nav-items li .dropdown-menu li a {
    padding: 10px 20px;
  }

  .hamburger {
    display: block; /* show hamburger on mobile */
  }

  /* Make nav-container relative for absolute menu */
  .nav-container {
    position: relative;
    width: 100%;
    justify-content: space-between;
  }


/* When active, show nav */
nav .nav-items.active {
  display: flex;
  right: 5px;
 }
.learning-tools {
  display: flex;
  gap: 25px;
  padding: 5px 20px;
  justify-content: center;
  background-color: #fdfdfd;
  height: auto;
}
.tool-container{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 16px;
}

.tool-card {
  width: 300px;
  height: auto;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  color: #222;
  position: relative;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-6px);
}

/* Top Right Age Label */
.tool-age {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.8rem;
  font-weight: bold;
  color: #333;
  background: rgba(255,255,255,0.6);
  padding: 4px 10px;
  border-radius: 12px;
}



 .tool-video {
  width: 70%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
}
/* @media (max-width: 600px) {
  nav {
    flex-direction: column;
    padding: 1rem;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 0.8rem;
  }

  section {
    padding: 1rem;
    height: auto;
  }

  #card {
    width: 100%;
    height: auto;
  }

  .library-card {
    padding: 12px;
  }

  .learning-tools {
    grid-template-columns: 1fr;
  }

  .slider {
    flex-direction: column;
    gap: 15px;
  } */
/* } */

/* Tablet (landscape & portrait) */
/* @media (min-width: 601px) and (max-width: 1024px) {
  nav ul {
    gap: 1.5rem;
  }

  section {
    padding: 1.5rem;
  }

  .learning-tools {
    grid-template-columns: repeat(2, 1fr);
  }

  #library-list {
    grid-template-columns: repeat(2, 1fr);
  } */
/* } */

/* Large desktop */
/* @media (min-width: 1440px) {
  section {
    max-width: 1500px;
  }

  .learning-tools {
    grid-template-columns: repeat(4, 1fr);
  }

  #library-list {
    grid-template-columns: repeat(4, 1fr);
  }
} */