body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    
}

h1{
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 70px;
}
 
h2{
    font-family:'Times New Roman', Times, serif ;
}

span{
    font-family:Georgia, 'Times New Roman', Times, serif;
}

header {
    background-color: #020106;
    color: #fff;
   padding:10px;
    text-align: center;
} 


.footer {
    background-color: #020106;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    
    bottom: 0;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    
    justify-content: space-between;
    align-items: flex-start;
}

.footer-section {
    width: 30%;
    text-align: left;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #ffcc00;
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-section p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.footer-section p a {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer-section {
        width: 100%;
    }
}

.dropdown-btn:hover {
    color: #ff8c00;
}


.dropdown-content {
    
    display: none;
    position: absolute;
    background-color: #020106;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    
}


/* Links inside the dropdown */
.dropdown-content a {
  line-height: 20px; 
    color: #ffffff;
    padding: 15px 50px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
    font-size: 20px;
    font-family:Georgia, 'Times New Roman', Times, serif;
}

/* Change color on hover */
.dropdown-content a:hover {
    background-color: rgb(190, 132, 132);
}

/* Show the dropdown content when hovering over the dropdown button  most imp thing */
.dropdown-container:hover .dropdown-content {

    display: block;
}


nav {
    background-color: #ffc7c7;
    padding: 10px 0;
    text-align: center;
}

nav a {
    color: black;
   
    text-decoration: none;
    font-size: 16px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif ;
    font-weight: 500;
}
nav .login a{
float: right;
margin-left: 20px;
margin-top: 20px;
}


.btn {
        
    margin-bottom: 20px;
    /*justify-content: center;
   text-align: center;
    */display: inline-block;
    padding: 12px 20px;
    background-color: #59ff00;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s ease;
    
}

.btn:hover {
    background-color: #50ac3e;
}