/* Importing Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
/* Nav Bar */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: #68a1dd; /* brown */
  background-color: #ffffff; /* creme */
}

.nav-links {
  display: flex;

  align-items: center;
  gap: 15px;
}

/* General link styling */
nav a {
  text-decoration: none;
  font-family: "Arial", sans-serif;
  font-weight: 600;
  font-size: 14px;
}

/*Get Started button */
.get-started-btn {
  background-color: #293f8e; /* blue */
  color: #F5EFEB; /* creme */
  padding: 6px 14px;
  border-radius: 4px;
  border: none;
  transition: background-color 0.3s ease;
}


/* White "About" button with border */
.about {
  background-color: #232c42;
  color: #ffffff; 
  padding: 5px 12px;
  border: 2px solid #ffffff; 
  border-radius: 4px;
  transition: all 0.3s ease;
}

.Resources {
  background-color: #d6dcf0; /* blue */
  color: #424242; /* creme */
  padding: 6px 14px;
  border-radius: 4px;
  border: none;
  transition: background-color 0.3s ease;
}
/* Hover effects */
.get-started-btn:hover {
  background-color: #1e2a5e; /* darker blue */
}

.about:hover {
  background-color: #433e9e; /* brown */
  color: #F5EFEB; /* creme */
}

.Resources:hover {
  background-color: #b2bded;  
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.hero {
  position: relative;
  width: 100vw;               
  min-height: 60vh;           
  background: linear-gradient(135deg, #5896e8, #e6f0ff), url("background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__title {
  position: relative;
  z-index: 2;
  color: #2F3546;
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: 4rem;
  text-align: left;
  margin: 0;
}

.hero__title .highlight {
  color: #293f8e;
}

/* optional semi-transparent overlay under the text */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(195, 195, 195, 0.107);
  z-index: 1;
}

.Tag {
  font-family: 'Bitter', serif;
  font-weight: 600;
  font-size: em;
  text-align: center;
  margin-top: 40px;
  color: #361d5d;
  background-color: rgba(255, 255, 255, 0);
}

* {
  margin: 0;
  padding: 0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

/* Card */

body {
  background: #f5f5f5;
 
}

.card-list {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.card-list .card-item {
  width: 400px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  list-style: none;
}

.card-list .card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.card-title {
  font-family: 'Bitter', serif;
  font-size: 1.5rem;
  color: #333;
  margin: 0;
}

.card-description {
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}



.card-button:hover {
  background: #8B4513; /* brown */
  color: #F5EFEB; /* creme */
}

/* Lessons Page */


.lessons-hero {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(122deg, #f5f9fd, #c1ffa1);
  background-size: cover;
}

.lessons-title {
  font-family: 'Lexend', sans-serif;
  font-size: 3rem;
  color: #333;
  margin: 0;
}

.lessons-subtitle {
  font-family: 'Bitter', serif;
  font-size: 1.2rem;
  color: #666;
  margin: 10px 0 0 0;
}

.lessons-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 50px 20px;
}

.lesson-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.lesson-card:hover {
  transform: translateY(-5px);
}

.lesson-card h2 {
  font-family: 'Bitter', serif;
  font-size: 1.5rem;
  color: #333;
  margin: 0 0 10px 0;
}

#lesson-title {
  text-align: center;
}

.lesson-card p {
  font-family: 'Lexend', sans-serif;
  color: #666;
  margin: 0 0 20px 0;
}

.lesson-btn {
  display: inline-block;
  background: #6aa84f;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.lesson-btn:hover {
  background: #1e2a5e; /* darker blue */
}

/* Lesson Content */
.lesson-content {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.lesson-content h1 {
  font-family: 'Lexend', sans-serif;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.lesson-content p, .lesson-content ul {
  font-family: 'Bitter', serif;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.lesson-content textarea {
  width: 100%;
  height: 150px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Lexend', sans-serif;
  margin-bottom: 20px;
}

.lesson-complete-btn {
  background: #293f8e; /* blue */
  color: #F5EFEB; /* creme */
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.lesson-complete-btn:hover {
  background: #1e2a5e; /* darker blue */
}

/* ALPHABET PAGE */
.Alphabet-Title {
  font-family: 'Lexend', sans-serif;
  font-size: 3rem;
  color: #065359;
  text-align: center;
  margin: 30px 0;
}
#letters-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}

#letters-grid img {
  cursor: pointer;
  transition: transform 0.2s;
}

#letters-grid img:hover {
  transform: scale(1.1);
}

.screen {
  text-align: center;
  margin: 20px 0;
}

.letter-big {
  width: 200px;
  height: auto;
  margin: 10px auto;
  justify-content: center;
  display: block; 
}

.word-item, .game-option {
  display: inline-block;
  margin: 10px;
  padding: 10px;
  border: 2px solid #68a1dd;
  border-radius: 10px;
  cursor: pointer;
  background-color: #f8fbff;
  transition: background-color 0.3s;
}

.word-item:hover, .game-option:hover {
  background-color: #e6f0ff;
}

.navigation {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

button:hover {
  background-color: #c8dcf0;
}

/* Shake animation for wrong answers */
.shake {
  animation: shake 0.5s;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}

.ear-icon {
  width: 40px;
  height: auto;
  vertical-align: middle;
  margin-left: 8px;
}


/* New Style for Alphabet Practice Header */
.htmlpractice1 {
  background: linear-gradient(135deg, #f8fbff, #ffffff), url("background.png");
}
.alphabet-practice-header {
            color: rgb(52, 65, 76);
            cursor: pointer;
            text-decoration: underline;
            font-size: 40px;
            justify-content: center;
             display: block;
    text-align: center;
    
        }

.PRTNW {
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    margin-top: 20px;
    text-decoration: underline;
    margin-bottom: 0;
    
}

.alphabet-practice-header:hover,
.PRTNW:hover, .Quiz-Instruction:hover {
  background-color: #5064ea;
  color: #000080; /* dark blue text on hover */
}


/* Flashcard Styles */

 .flash {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  margin: 0;
  font-family: Arial, sans-serif;
}

.flashcard-container {
  text-align: center;
}

.flashcard {
  width: 300px;
  height: 200px;
  perspective: 3000px;
  margin-bottom: 20px;
  cursor: pointer;
}

.flashcard .front,
.flashcard .back {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 10px;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  transition: transform 0.6s;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.flashcard .front {
  background-color: #ffffff;
}

.flashcard .back {
  background-color: #7c30b2d8;
  transform: rotateY(180deg);
}

.flashcard.flipped .front {
  transform: rotateY(180deg);
}

.flashcard.flipped .back {
  transform: rotateY(0deg);
}

.navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.nav-btn {
  font-size: 1.5rem;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  background-color: #514caf;
  color: white;
  transition: background-color 0.3s;
}

.nav-btn:hover {
  background-color: #3f1081;
}

.nav-btn:disabled {
  background-color: #aaa;
  cursor: not-allowed;
}

.Quiz-Instruction {           color: rgb(11, 51, 84);
            cursor: pointer;
            text-decoration: underline;
            font-size: 40px;
            justify-content: center;
             display: block;
    text-align: center;
    
        }

/* CVC Lesson Page */

body {
    font-family: 'Raleway', sans-serif; /* clean, mature font */
}

/* Container for each deck */
.flashcard3-deck {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

/* Single Flashcard */
.flashcard3 {
    width: 150px;
    height: 200px;
    perspective: 1000px; /* needed for 3D flip */
    cursor: pointer;
}

/* Inner part that flips */
.flashcard3-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

/* Flip the card */
.flashcard3.flipped .flashcard3-inner {
    transform: rotateY(180deg);
}

/* Front and back */
.flashcard3-front, .flashcard3-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #fff;
    font-size: 18px;
    padding: 10px;
    text-align: center;
}

/* Back of the card */
.flashcard3-back {
    background-color: #dbe7ff;
    transform: rotateY(180deg);
}

/* Images inside flashcards */
.flashcard3 img {
    width: 100px;
    height: auto;
    margin-top: 10px;
    border-radius: 8px;
}

/* Hover effect */
.flashcard3:hover .flashcard3-front {
    background-color: #f0f8ff;
}

/* Responsive: reduce size on small screens */
@media (max-width: 500px) {
    .flashcard3 {
        width: 120px;
        height: 160px;
    }
    .flashcard3 img {
        width: 80px;
    }
}

/* Consonant Clusters Lesson Page */

.lesson-box {
  background: #9c7cc7;
  color: white;
  padding: 30px;
  border-radius: 16px;
  max-width: 800px;
  margin: 40px auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.lesson-box h2 {
  margin-top: 0;
}

.lesson-box button {
  margin-top: 20px;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  background: white;
  color: #2f6fed;
  cursor: pointer;
  font-weight: bold;
}

.lesson-box button:hover {
  background: #e6ecff;
}

.Rec1cc {
            color: rgb(255, 255, 255);
            cursor: pointer;
            text-decoration: underline;
            font-size: 15px;
            justify-content: center;
             display: block;
    text-align: center;
   margin-bottom:40px;
        }

.rec2cc {
            color: rgb(255, 255, 255);
            cursor: pointer;
            text-decoration: underline;
            font-size: 15px;
            justify-content: center;
             display: block;
    text-align: center;
   margin-bottom:40px;
        }

.words{
            color: rgb(255, 255, 255);
            cursor: pointer;
            text-decoration: underline;
            font-size: 15px;
            justify-content: center;
             display: block;
    text-align: center;
   margin-bottom:40px;
        }

.lb2 {
  background: rgb(106, 106, 231);
  color: white;
  padding: 30px;
  border-radius: 16px;
  max-width: 800px;
  margin: 40px auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.lb2 p,
.lb2 h3 {
  transition: background-color 0.2s ease, color 0.2s ease;
}
.container {
  background-color: #f3f8fc;
}
/* Hover effect */
 .Rec1cc:hover, .rec2cc:hover, .flop:hover, .brag:hover, .clap:hover, .drum:hover, .flag:hover, .plan:hover, .self:hover, .disk:hover {
  background-color: #e6f2ff;
  color: #0b63ce;
  cursor: pointer;
  border-radius: 6px;
}
.digexp:hover,.chexp:hover, .shexp:hover, 
.thexp:hover, 
.phexp:hover, 
.whexp:hover, .ngexp:hover,
 .ghexp:hover, 
 .quexp:hover, 
 .knexp:hover, 
 .wrexp:hover, .aiexp:hover, .ayexp:hover, .eaexp:hover, .eeexp:hover, .oaexp:hover, .ueexp:hover, .oyoiexp:hover, .ouexp:hover {
  background-color: #e6f2ff;
  color: #0b63ce;
  cursor: pointer;
  border-radius: 6px;
}

.lb2 > * {
  margin-bottom: 10px;
}


/* Digraph Practice Page */

body {
  background: #f2f6fb;
  font-family: "Segoe UI", sans-serif;
}

.ixl-box {
  background: white;
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  text-align: center;
}

.audio-btn {
  background: #2196f3;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
}

#audioBtn:hover {
  background: #0d47a1;
}

#choices button {
  width: 100%;
  margin: 6px 0;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #90caf9;
  background: #62b7f4;
  cursor: pointer;
}

#choices button:hover {
  background: #bbdefb;
}

#textInput {
  width: 60%;
  padding: 8px;
  margin: 10px;
}

#feedback {
  font-weight: bold;
  margin: 10px;
}

#nextBtn {
  background: #4caf50;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
}
#nextBtn:hover {
  background: #2e7d32;
}

/* Magic E Lesson Page */

.magic-e-box {
  font-family: Raleway, sans-serif;
  background: #f6f9ff;
  padding: 30px;
  border-radius: 16px;
  max-width: 750px;
  margin: 40px auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}


.magic-e-box h2 {
  color: #1f4fd8;
}

.magic-example p {
  font-size: 18px;
}

.magic-choices button {
  padding: 10px 18px;
  margin: 6px;
  border-radius: 8px;
  border: 1px solid #cfd8ff;
  background: white;
  cursor: pointer;
  transition: 0.2s;
}

.magic-choices button:hover {
  background: #e7efff;
}

.magic-input input {
  padding: 8px;
  width: 120px;
}

.magic-input button {
  padding: 8px 12px;
  margin-left: 8px;
}
.magic-feedback {
  font-weight: bold;
  margin-top: 10px;
}

.lb2 p, 
.lb2 h3 {
  transition: color 0.2s ease, background-color 0.2s ease;
  padding: 4px 6px;
  border-radius: 6px;
}


.magic-e-box p,
.magic-e-box h3,
.magic-e-box strong {
  transition: background-color 0.2s ease, color 0.2s ease;
  padding: 4px 6px;
  border-radius: 6px;
}

.magic-e-box p:hover,
.magic-e-box h3:hover,
.magic-e-box strong:hover {
  background-color: #e6f2ff;
  color: #1f4fd8;
  cursor: pointer;
}


.sj-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}

.sj {
  text-decoration: none;
  margin: 0;
  font-family:'Raleway', sans-serif;
  font-weight: 600;
  background-color: #293f8e;
  color: #F5EFEB;
  border-radius:0;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  font-size: 2rem;
  height: 100px;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  list-style: none;
}

.sj:hover {
  background-color: #1e2a5e;
   transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}


.ab-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}
.ab {
    text-decoration: none;
  margin:0;
  font-family:'Raleway', sans-serif;
  font-weight: 600;
  background-color: #4e64b4;
  color: #F5EFEB;
  border-radius: 0;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  font-size: 2rem;
  height: 100px;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  list-style: none;
}

.ab:hover {
  background-color: #6c7fb3;
   transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.gf-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}

.gf {
    text-decoration: none;
  margin:0;
  border-radius:0;
  font-family:'Raleway', sans-serif;
  font-weight: 600;
  background-color: #7588cb;
  color: #F5EFEB;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  font-size: 1.5rem;
  height: 100px;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  list-style: none;
  
}

.gf:hover {
  background-color: #98a4d0;
   transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.sj, .ab, .gf {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.vowels, .vowelexp {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vowels:hover, .vowelexp:hover {
  cursor: pointer;
  background-color: #94aee4;
}
.site-footer {
  background: #293f8e;
  color: white;
  padding: 20px;
  text-align: center;
  margin-top: 60px;
}

.site-footer a {
  color: #e6f2ff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer {
  background: #293f8e;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.site-footer p {
  margin-bottom: 10px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socials img {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.socials img:hover {
  transform: scale(1.2);
}


/* Buttons inside the lesson container only */
#lesson-container button {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    border: none;
    background-color: rgb(95, 114, 207);
    color: white;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px; /* spacing for icons inside buttons */
}

/* Hover effect */
#lesson-container button:hover {
    background-color: rgb(75, 94, 187);
    transform: scale(1.05);
}

/* Active click effect */
#lesson-container button:active {
    transform: scale(0.95);
}

/* Optional: smaller navigation arrow buttons */
#lesson-container #prev-screen,
#lesson-container #next-screen {
    padding: 8px 16px;
    font-size: 14px;
}
/* Vowels Section Styles */
#vowels-section {
  text-align: center;
  margin-top: 40px;
  font-family: 'Verdana', sans-serif;
}

#vowels-section h2 {
  color: #5f72cf;
  margin-bottom: 10px;
  text-shadow: 1px 1px #ccc;
}

#vowels-section p {
  font-size: 16px;
  margin-bottom: 20px;
}

/* Vowel Boxes */
.vowel-box {
  cursor: pointer;
  transition: transform 0.3s, filter 0.3s, background 0.3s;
  border-radius: 12px;
  padding: 10px;
}

.vowel-box:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  background: #5f72cf;
  color: white;
}

/* Vowel Lesson Container */
#vowel-lesson-container {
  border: 2px solid #5f72cf;
  border-radius: 12px;
  background: #f0f8ff;
  padding: 20px;
  margin-top: 20px;
}

/* Buttons */
button {
  cursor: pointer;
  background: #5f72cf;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 15px;
  margin: 5px;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

button:hover {
  background: #3b47a1;
  transform: scale(1.05);
}

/* Ear Icon */
.ear-icon {
  width: 20px;
  height: 20px;
  margin-left: 5px;
  vertical-align: middle;
}

/* Word Items in Words List */
.word-item {
  padding: 8px 12px;
  margin: 5px;
  border: 2px solid #5f72cf;
  border-radius: 8px;
  display: inline-block;
  cursor: pointer;
  background: white;
  transition: background 0.3s, transform 0.2s;
}

.word-item:hover {
  background: #5f72cf;
  color: white;
  transform: scale(1.05);
}

/* Game Options */
.game-option {
  padding: 8px 12px;
  margin: 5px;
  border: 2px solid #5f72cf;
  border-radius: 8px;
  display: inline-block;
  cursor: pointer;
  background: white;
  transition: background 0.3s, transform 0.2s;
}

.game-option:hover {
  background: #5f72cf;
  color: white;
  transform: scale(1.05);
}

/* Navigation Buttons */
.vowel-navigation button {
  background: #5f72cf;
  color: white;
  border-radius: 8px;
  padding: 5px 12px;
  margin: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.vowel-navigation button:hover {
  background: #3b47a1;
}

/* Shake animation for wrong answer */
@keyframes shake {
  0% { transform: translateX(0px); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0px); }
}

.shake {
  animation: shake 0.4s;
}

/* About.html */ 

.abouthtml {
  background-color: #c7daf6;
}

.about-page { 
background-color: white;
margin: 15px 15px; 
justify-content: center;
align-items: center; 
padding: 20px;
border-radius: 10px;
}

.abtlxbl, 
.about-intro, .ourmission, 
.mission-intro, .who, .who-intro, 
.wyl, .wyl-intro, .htu,
.htu-intro { 
background-color: white;
 transition: background-color 0.3s ease;
 margin: 7px auto; 
 
 }


.abtlxbl:hover, 
.about-intro:hover, .ourmission:hover, 
.mission-intro:hover, .who:hover, .who-intro:hover, 
.wyl:hover, .wyl-intro:hover, .htu:hover,
.htu-intro:hover { 
cursor: pointer; 
background-color: #c7d1fe;
 }

.at, .an, .ig, .op, .ug, .cvcwords {
  margin: 5px;
  background-color: transparent; /* ensures a starting point */
  transition: background-color 0.3s ease;
}

.at:hover, .an:hover, .ig:hover, .op:hover, .ug:hover, .cvcwords:hover {
  cursor: pointer;
  background-color: #aec3ee;
}
