body {
    background-color: #1a1a1a; /* Dark background */
    color: white;
}

h2 {
    color: #FFA500; /* Orange heading */
    text-align: center;
    margin-top: 50px;
}

ul {
    list-style: none;
    padding: 0;
    text-align: center;
    display: inline;
}

li {
    margin: 20px 0;
}

li a {
    background-color: #800080; /* Purple currency links */
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    display: inline-block;
}

li a:hover {
    background-color: #FFA500; /* Orange hover */
    color: black;
}

#currency_converter{
    width: 50%;
    margin: auto;
    background-color: #333;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}
#currency_converter input, #currency_converter select, #currency_converter button{
    width: 100%;
}
div li a{
    display: inline-flex;
}
.featured {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}
.featured-item {
    width: 30%;
    text-align: center;
}
.featured-item img {
    width: 100%;
    height: auto;
}


