/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #009999; /* Matching blue-green shade */
    text-align: center;
    color: black;
}

/* Header */
h1 {
    font-family:  "Doto", sans-serif;
    font-size: 3rem;
    font-weight: bold ;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
}

/* Container */
.contaner {
    background: white;
    padding: 30px;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    margin-top: 15px;
    height: 500px;
    width: 500px;
}
/* 
.contaner:hover {
    background-color: rgb(95, 94, 94);
    color: rgb(0, 0, 0);
} */

.before p {
    font-size: 1.4rem; /* Increased text size */
    font-weight: bold;
}

/* Input Amount */
.before input {
    width: 350px;
    padding: 10px;
    font-size: 1rem;
    text-align: center;
    border-radius: 20px;
    /* cursor: pointer; */
    border: 1px solid rgb(6, 0, 0);
}

/* Converter Box */
.Converter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding: 20px;
    /* background-color: green; */
}

/* Currency Section */
.from, .to {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Flag Images */
.from img, .to img {
    width: 100px;
    height: 90px;
    border-radius: 5px;
}

/* Dropdowns */
select {
    padding: 5px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}
select:hover {
    background-color: rgb(146, 73, 255);
    color: white;
}
.from p, .to p {
    font-size: 1.4rem; /* Increased text size */
    font-weight: bold;
}
#img {
    width: 80px; /* Adjust width as needed */
    height: 80px; /* Adjust height as needed */
    padding: 2rem;
}

/* Exchange Button */
.btn {
    margin-top: 20px;
}

.btn button {
    background-color: white;
    color: black;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid black;
    cursor: pointer;
    transition: 0.3s;
}

.btn button:hover {
    background-color: rgb(83, 255, 57);
    color: rgb(8, 0, 0);
}

/* Exchange Rate Display */
.After {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Arrow Image */

