* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Monospace;
}

body {
    /* display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; */
    height: 100vh;
    width: 80vw;
}

.testblock {
    height: 20em;
    width: 100%;
    margin-inline: 10vw;
    background-color: pink;
}

.page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    height: 20em;
    width: 100%;
    margin-inline: 10vw;
    background-color: greenyellow;
}

.icon {
    height: 20vh;
}

.line {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
    animation: fadeIn 1000ms;
}

.balance {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh;
    width: 80vh;
    background-color: rgb(0, 0, 0);
    border-radius: 5em;
    margin-left: 2.5em;
}

.dollar:hover {
    background-color: rgb(130, 238, 173);
}


  /* KEYFRAMES CSS */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInMove {
    from {
        opacity: 0;
        margin-left: 10em;
    }
    to {
        opacity: 1;
        margin-left: 6em;
    }
}