/*Body syles*/
body {
    color: #333333;
    font-family: Arial, Helvetica, sans-serif;
    margin: 10px;
}

h1 {
    text-align: center;
    margin-bottom: 10px;
    border-bottom: 3px solid #ff9900; 
    padding-bottom: 10px;
}

/* Bangladesh flag theme */
nav {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px 0;
    background-color: #006a4e;
    position: relative;
    border-radius: 5px;
}
/* Red symbol in the center */
nav::after {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background-color: #f42a41; 
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Links inside nav */
nav a {
    color: #000000; /* font color:black */
    text-decoration: none;
    font-weight: bold;
    margin: 0 15px;
    position: relative;
    z-index: 1;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.4s, color 0.4s;
}

nav a:hover {
    background-color: #f42a41; 
    color: #000000; 
}

/* Paragraph styles */
a {
    color: #0066cc;       
    text-decoration: none; 
    background-color: #fff2cc;
    padding: 2px 6px;    
    border-radius: 5px;  
    transition: background-color 0.3s, color 0.3s;
}

a:hover {
    color: #ffffff;            
    background-color: #ff9900;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 20px;
    border-top: 3px solid #ff9900; 
    padding-top: 10px;
}

/* Images and captions */
img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 300px; 
    height: auto;  
    border: 5px solid #ff9900; 
    border-radius: 10px; 
}

figure {
    text-align: center;
    margin: 20px 0; 
}

figcaption {
    margin-top: 10px;
    font-weight: bold;
    font-size: 16px;
    color: #333333;
}


