/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff; /* from learning page */
    color: #333;
    text-align: center;
    padding: 0px;
    margin: 0;
    padding: 0

} 




h1, h2, h3 {
    color:#ff6347; /* Tomato color */
}
    

/* Layout Containers */
.content {
    max-width: 800px;
    margin: 0 auto;
}

.container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
	background-color: #f0f8ff;
}

/* Fidel Series Styling */
.series {
    display: flex;
    flex-direction: column;
    align-items: center;
}


 .box {
            width: 50px;
            height: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin: 5px;
            border-radius: 10px;
            color: black;
            font-size: 20px;
            font-weight: bold;
            cursor: pointer;
        }
		
		
.box:hover {
    transform: scale(1.1);
}



/* Fidel Text */
.letter {
    font-size: 36px;
    font-weight: bold;
}
.word {
    font-size: 24px;
}

/* Navigation Links */
.links {
    margin-top: 20px;
}
.links a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #ff6347;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
	font-size: 15px;
}
.links a:hover {
    background-color: #6eaff4;
}




/* Image Section */
.bottom-image {
    margin-top: 40px;
}
.bottom-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Footer */
footer {
    margin-top: 0px;
    font-size: 16px;
    color: #080707;
    background-color: #F3A26D;
    padding: 15px 0px;
    text-align: center;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}
.footer-links {
    margin-top: 10px;
}
.footer-links a {
    margin: 0 10px;
    color: #070703e6;
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}

 .alphabet-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
	color:black
  }
  
  
  /* header {
  background-color: #98D8EF;
  padding: 15px 0px;
  color: #000000;
  text-align: center;
} */

header {
    background-color: #98D8EF;
    padding: 15px 0px;
    color: #000000;
    text-align: center;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }
  

 
 
.navbar {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  margin: 0;
  font-size: 28px;
  font-weight: bold;
}

.menu {
  margin-top: 5px;
}

.menu a {
  margin: 0 0px;
  color: #0A1D3A;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.menu a:hover {
  background-color:#F6C794;
}

