html {
    cursor: url("data:image/svg+xml,%3Csvg%20viewBox%3D%22-50%20-50%20100%20100%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%2250%22%20fill%3D%22rgba%28255%2C%20255%2C%20255%2C%200.6%29%22%20%2F%3E%0A%3C%2Fsvg%3E%0A"), pointer;
}

body {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(24, 24, 41);
}

h1 {
    color: white;
    width: 500px;
    text-align: center;
    margin-top: 20px;
}

#backgroundVideo {
    filter: brightness(0.4);
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.outer-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: -50px;
    right: 0;
    bottom: 0;
}

.inner-container {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    width: 310px;
}

.inner-container .btn {
    color: white;
    outline: white 1px solid;
    border-radius: 0;
    transition: .2s transform ease-in-out;
    will-change: transform;
    z-index: 0;
    overflow: hidden;
    font-weight: 400;
    font-size: 20px;
    cursor: none;
}

.inner-container .btn:focus {
    outline: white 1px solid;
}

.inner-container .btn::after {
    background-color: white;
    content: '';
    border-radius: 20px;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-100%, 0) rotate(10deg);
    transform-origin: top left;
    transition: .2s transform ease-out;
    will-change: transform;
    z-index: -1;
}

.inner-container .btn:hover::after {
    transform: translate(0, 0);
    border-radius: 0;
}

.inner-container .btn:hover {
    color: black;
    transform: scale(1.2);
    will-change: transform;
}

.menu:hover {
    cursor: url("data:image/svg+xml,%3Csvg%20viewBox%3D%22-50%20-50%20100%20100%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%220%22%20cy%3D%220%22%20r%3D%2250%22%20fill%3D%22rgba%28255%2C%20255%2C%20255%2C%200.6%29%22%20%2F%3E%0A%3C%2Fsvg%3E%0A"), pointer;
}

.language-selector img {
    margin-top: 10px;
}