
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: sans-serif;
}
a{
    text-decoration: none;
    color: black;
}

html, body{
    height: 100%;
    width: 100%;
}
.application{
    height: 60vh;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}
span{
     color: greenyellow;
}
.custom-bc{
    margin-top:10px;

}
@media only screen and (max-width: 992px){
    .application {
    height: fit-content;
}
}
@media only screen and (max-width: 500px){
    
.table tr{
    font-size: 0.9rem;
}
.application-bottom h2{
    font-size: 1.4rem;
}
}
