@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Inconsolata", monospace;
}
.flex{
    display: flex;
    flex-wrap: wrap;
}
.head{
    font-size: 40px;
    color:darkslateblue;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
}
.card{
    background: rgba(255, 252, 252, 0.27);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10.6px);
    -webkit-backdrop-filter: blur(10.6px);
    border: 1px solid rgba(255, 252, 252, 0.42);
}
.container{
    max-width: 13200px;
    margin: auto;
}
.box{
    align-items:center;
    justify-content: center;
    height: 100vh;
    background: rgb(238,174,202);
    background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(152,190,234,1) 100%);
}
.convertor{
    flex-direction: column;
    margin: 30px;
}
.swap {
    align-items: center;
    font-size: 20px;
}
.country{
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}
#txt1,#txt2{
    padding: 8px 10px;
    margin-top: 5px;
    font-size: 20px;
    font-weight:700;
    color: darkslateblue;
}
