html, body {
    height: 100%;
    width: 100%;
    margin: 0px;
    padding: 0px;
    background-color: rgba(13, 27, 42, 1);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

#navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.2);
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

#title {
    position: relative;
    left: 55px;
    top: 0.2vh;
}

#arrow {
    width: 50px;
    height: 50px;
    padding: 16px;
}

.flag {
    width: 60px;
    height: auto;
    padding: 16px;
    position: absolute;
    left: 12px;
}

#euro_input, #usd_input {
    margin: 16px;
    height: 50px;
    padding-left: 85px;
    padding-right: 65px;
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 9px;
    flex:1;
    font-size: 20px;
    text-align: center;
    transition: all 0.2s ease;
}

#euro_input:focus, #usd_input:focus {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border-radius: 12px;
}

#euro_input::placeholder, #usd_input::placeholder {
    text-align: left;
}

#convert_button {
    margin: 16px;
    background-color: rgba(245, 222, 179, 1);
    border: 2px solid black;
    border-radius: 8px;
    width: 100px;
    height: 50px;
    transition: 0.1 ease;
    cursor: pointer;
}

.button-container {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

#convert_button:active {
    background-color: rgba(245, 222, 179, 0.8);
    border: 3px solid black;
}

.input_container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow_div {
    width: 100%;
    display: flex;
    justify-content: center;
    left: 100px;
    align-items: center;
    font-size: 20px;
    color: white;
}