@font-face {
    font-family: 'Lemon';
    src: url('https://lingu.space/fonts/LEMONMILK-Regular.eot');
    src: url('https://lingu.space/fonts/LEMONMILK-Regular.otf') format('embedded-opentype'),
         url('https://lingu.space/fonts/LEMONMILK-Regular.woff') format('woff'),
         url('https://lingu.space/fonts/LEMONMILK-Regular.otf') format('truetype'),
         url('https://lingu.space/fonts/LEMONMILK-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
body{
    user-select: none;
    margin: 0;
    padding: 0;
    height: 100vh;
    background:#131313;
    display: flex;
    justify-content: center;
    font-family: 'Courier New', Courier, monospace;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
}

.foot_box{
    text-align: center;
    color: white;
    font-size: 1em;
}

h1 {
    text-align: center;
    color: white;
    border-radius: 25px;
    font-family: 'Lemon', Arial, Helvetica, sans-serif;
}

.href_box{
    color: white;
    display: inline;
}
.href_box_info{
    color: #b7b7b7;
    display: inline;
    visibility: visible;
}

a:link, a:visited {
    color: white;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}
  
a:hover, a:active {
    color: white;
}
ul li{
    list-style: none;
    font-size: 1.3em;
    line-height: 30px;
    text-align: left;
    height: 50px;
    position: relative;
    color: rgb(168, 168, 168);
    transition:color 0.8s, font-size 0.8s,transform 0.8s;
}
ul li:hover{
    color: rgb(255, 255, 255);
    transform: rotate(-0.5deg);
}
ul li::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff7a4e;
    z-index: -1;
    transform: scaleY(0);
    transition: transform 0.5s;
    transform-origin: bottom;
}
ul li:hover::before{
    transform: scaleY(1);
    transition: transform 0.5s;
    transform-origin: top;
}
ul li::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff7a4e;
    z-index: -2;
    transform: scaleY(0);
    transition: transform 0.5s;
    transform-origin: bottom;
    filter: blur(40px);
}
ul li:hover::after{
    transform: scaleY(1);
    transition: transform 0.5s;
    transform-origin: left;
}