body{
    background: linear-gradient(190deg,rgb(50, 50, 50),rgb(20,20,20));
    background-attachment: fixed;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}
*{
    text-align: center;
    color: white;
    font-weight: 200;
}
#fonts{
    font-size: 0px;
    margin-top: 60px;
}
#fonts div{
    width: 250px;
    height: 100px;
    display: inline-block;
    margin-left: 30px;
    border-radius: 20px;
    line-height: 100px;
    font-size: 25px;
    background-color: rgb(0,150,255);
    transition: border-color 0.5s ease,
    transform 0.5s ease,
    filter 0.5s ease,
    background-color 0.5s ease,
    color 0.5s ease;
}
#fonts div:hover{
    transform: translate(0%,-30%) scale(1.1);
    filter: drop-shadow(0 10px 20px rgb(0,200,255));
    cursor: pointer;
    background-color: rgb(0,200,255);
}
#fonts div:active{
    background-color: white;
    color: black;
    filter: drop-shadow(0 10px 30px rgb(255,255,255));
    transform: translate(0%,-30%) scale(1.2);
}
noscript{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 350px;
    height: 150px;
    background-color: red;
    border-radius: 25px;
    color: white;
    line-height: 150px;
    font-size: 20px;
    white-space: nowrap;
}