@font-face {
    font-family: coolvetica;
    /* font-weight: bold; */
    src: url("coolvetica\ condensed\ rg.otf") format("opentype");
}

body {
    margin: 0;
    padding: 0;
    background-color: rgb(0, 0, 0);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 100vw; */
    /* height: 100vh; */
    /* overflow: hidden; */
    overflow: hidden;
    font-family: coolvetica;
}

.video{
    width: 800px;
}

.logo{
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    display: grid;
    place-items: center;
}

.video, .log, .blur{
    position: absolute;
}

.log{
    backdrop-filter: blur(10px);
    background-color: rgba(255, 0, 0, 0);
    z-index: 1;
    animation: breathing 60s ease-in-out infinite;
}

.content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    flex-direction: column;
}

@keyframes breathing {
    0%, 100% {
        width: 2000px;
    }
    50% {
        width: 4000px;
    }
}

.top{
    width: 100%;
    height: 80%;
}

.bottom{
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 5px;
    font-size: 20px;
    flex-direction: column;
}

.easter{
    width: 30px;
    height: 30px;
    position: fixed;
    z-index: 5;
    background-color: rgb(0, 0, 0);
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(games/pad.svg);
    /* transition: background-color 150ms ease-in-out; */
    transition: all 150ms ease-in-out;
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
}

.easter:hover{
    background-color: white;  
    /* box-shadow: */
    /* 0 0 7px #fff,
    0 0 8px #fff,
    0 0 12px #fff; */
}

.linka{
    width: 100%;
    height: 100%;
}
