@import url('https://rsms.me/inter/inter.css');


.mud-typography-body1{
    font-family: Inter, sans-serif;
}

.mud-container{
    min-height: calc(100vh - 64px);
    padding-bottom: 32px;
}

.yellow-on-hover{
    color: #8e8e8e;
    transition: color .2s ease-in-out;
}
    .yellow-on-hover:hover {
        color: #ffd200 !important;
    }
    
.underline-on-hover{
    span{
        color: white;
        border-bottom: solid #0c0c0c 1px;
    }
}
    .underline-on-hover:hover {
        span{
            color: white;
            border-bottom: solid white 1px;
            transition: border-bottom-color .4s ease-in-out;
        }
    }
    

