body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f8f9fa;
    margin: 0;
    padding: 20px;
}

h1 {
    font-size: 2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
h1:nth-of-type(1) {
    color: lightcoral;
}
h1:nth-of-type(2) {
    color: steelblue;
}

input[type="button"] {
    background-color: lightgreen;
    color: black;
    font-size: 20px;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#radio {
    background: #ffffff;
    padding: 15px;
    margin: 20px auto;
    border-radius: 10px;
    width: 100%;
}

#radio strong {
    font-size: 18px;
    color: #333;
}

label {
    font-size: 16px;
    color: #333;
}
input[type="number"] {
    width: 50px;
    padding: 5px;
    font-size: 16px;
    border: 1px solid #333;
    border-radius: 5px;
    text-align: center;
}
.container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 100px;
    margin-top: 20px;
}

.left-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.left-section img {
    width: 200px;
    height: auto;
    border: 5px solid #ddd;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.left-section input[type="button"] {
    background-color: lightgreen;
    color: black;
    font-size: 20px;
    padding: 20px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.left-section input[type="button"]:hover {
    background-color: #218838;
}

.right-section {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
#currencyImage {
    width: 300px;
    height: auto;
}