* {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@font-face {
    font-family: "Fira Sans";
    src: url("/fonts/FiraSans-Medium.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "Fira Code";
    src: url("/fonts/FiraCode.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Fira Sans", serif;
}

.main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.title {
    display: flex;
    align-self: center;
    text-align: center;
    font-size: 21vh;
    color: rgba(255, 255, 255, 1);
    font-family: "Fira Code", serif;
}

.menu {
    height: 100vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.menu__elem {
    color: #ffffff;
    padding: 3px;
    font-size: 24px;
    transition: font-size 1s;
}

.menu__elem:hover {
    font-size: 30px;
    transition: font-size 1s;
}

.title::before {
    filter: blur(10px);
}

.shadow {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.gradient {
    position: fixed;
    z-index: -1;
    height: 100vh;
    width: 100%;
    background: linear-gradient(280deg, #0081ff, #a300ff, #ff00b2, #00d0ff);
    background-size: 600% 600%;

    -webkit-animation: gradient_animation 15s ease infinite;
    -moz-animation: gradient_animation 15s ease infinite;
    animation: gradient_animation 15s ease infinite;
}

@-webkit-keyframes gradient_animation {
    0%{background-position:0 31%}
    50%{background-position:100% 70%}
    100%{background-position:0 31%}
}
@-moz-keyframes gradient_animation {
    0%{background-position:0 31%}
    50%{background-position:100% 70%}
    100%{background-position:0 31%}
}
@keyframes gradient_animation {
    0%{background-position:0 31%}
    50%{background-position:100% 70%}
    100%{background-position:0 31%}
}
