@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

#app {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

* {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: #333333;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #f0f0f0;
    overflow: hidden;
}
header {
    height: 15vh; /* Set header height to 15% of the viewport height */
    width: 100%;
}
.Hwrapper {
    background: linear-gradient(to bottom, #f0f0f0 90%, rgba(255, 255, 255, 0) 100%);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
}
.smallWrapper {
    width:15vw;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#large {
    width: 30vw !important;
}
box-icon {
    width: 25px;
    height: 25px;
}
.smallContainer {
    display: flex;
    align-items: center;
    width: 15vw;
}
.smallContainer h2 {
    margin: 0;
    font-size: 2vw;
}
.smallWrapper h1 {
    font-size: 2vw; /* Set font size in pixels */
    /* Adjust the value (16px) as needed to achieve the desired appearance */
}

.Hwrapper img {
    height: 15vh; /* Set image height to slightly smaller than the header height */
    max-width: 100%;
    width: auto; /* Ensure aspect ratio is maintained */
}



.container {
    height: 85%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.currency-list {
    width: 100%;
    height: 40%;
}

.currency {
    width: 100%;
    height: 90%;
}
.currency-details {
    height: 100%;
}




.top-row {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
}
.top-row h1 {
    color: #f0f0f0;
    font-size: 3vw;
}

.currency-flag {
    width: 8vw;
}

.bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 100%;
}

.left-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}

.right-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.money-exchange {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.exchange-rates {
    margin-bottom: 10px;
    font-size: 3vw;
    color: #f0f0f0;
}

.buy-sell-rate {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
    justify-items: center;
    justify-content: center;
}

.buy-sell-rate .buy-rate, .buy-sell-rate .sell-rate {
text-align: center;
font-size: 4.5vw;
font-weight: 700;
width: 100%;
}
.buy-sell-rate .buy-rate {
    background-color: lightgreen;
}
.buy-sell-rate .sell-rate {
    background-color: lightcoral;
}

.right-section .abroad-rate-section {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vw;
    position: relative;
}

.right-section .abroad-rate-section * {
    color: #e9e9e9;
    font-weight: 600;
    font-size: 5vw;
    text-align: center;
}
#plane {
    width: 6vw;
}
.abroad-rate-section img{
width: 12vw;
}

#city {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: brightness(0.65);
}







h1 {
    font-size: 2.5vw; /* Adjust font size as needed */
}
.rate-wrapper {
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.rate-wrapper p {
    font-size: 2em; /* Adjust font size as needed */
}


