@font-face {
  font-family: LemonMilk;
  src: url(LEMONMILK-Regular.otf);
}

:root {
    --orange: #FF6936;
    --teal: #47DFBE;
    --background: #f2f2f2
}

body {
    background-color: var(--background)!important;
    font-family: roboto, sans-serif;
}

.fincheck-container {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: fit-content;
    font-size: 3rem;
    padding: 3rem;
    border-radius: 5rem;
    border: 1px solid rgba(0,0,0,0.23);
    border-bottom: 5px solid rgba(0,0,0,0.23);
    box-shadow: 0 0 50px rgba(0,0,0,0.2);
    margin: 1em auto 1.5em;
}

.fincheck {
    font-weight: bold !important;
    color: var(--orange);
    font-family: LemonMilk;
    font-size: 1em;
    height: fit-content;
    margin-bottom: 0;
}

.fincheck-container em {
    color: var(--teal);
    font-weight: 900;
    font-size: 1.5em;
}

h2 {
    font-weight: bold;
    margin-bottom: 1em;
}

.flex-container {
    display: flex;
    justify-content: space-between; /* Adjusts the space between items */
    align-items: center; /* Centers items vertically */

}
.label {
    flex: 0 0 30%; /* Adjust the width of the label */
    text-align: right; /* Align text to the right */
    margin-right: 10px; /* Space between label and value */
}
.value {
    flex: 1; /* Takes remaining space */
    text-align: left;;
}
@media (max-width: 576px) {
    html {
        font-size: 14px;
    }

    .fincheck-container {
        font-size: 2rem;
        padding: 2rem;
    }
}

