/* Yeah youre gonna have a hard time here prolly */

@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Space Mono', monospace;
}

body{
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    color: rgba(202, 202, 202, 1);
}

.d-block{
    display: block;
}

.t-bold{
    font-weight: bold;
}

.text-center{
    text-align: center;
}

.small{
    display: block;

    font-size: 0.73rem;
    letter-spacing: -0.5px;
    line-height: 10px;
}

#background-video{
    opacity: 60%;

    position: fixed;
    
    inset: 0;

    z-index: -1;

    object-fit: cover;
    width: 100%;
    height: 100%;

    transform: scale(1);

    filter: blur(1px);
    transition: all 2s ease;
}

#background-video.hide{
    transform: scale(1.5);
    filter: blur(10px);
    opacity: 0%;
}



.logo{
    object-fit: cover;
    height: 60px;
}

main{
    position: absolute;

    top: 50%;
    left: 50%;
    
    
    transform: translate(-50%, -50%);;

    padding: 50px;

    border-radius: 30px;

    width: 400px;

    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);

    backdrop-filter: blur(8px);
}

.welcome-message{
    cursor: pointer;

    position: absolute;
    inset: 0;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 20px;

    backdrop-filter: blur(30px);
    transition: opacity 500ms ease;
}

.welcome-message img{
    height: 90px;
}

.hide{
    opacity: 0%;
}

.options{
    margin-top: 20px;
    margin-bottom: 20px;
}

.options ul{
    display: grid;
    gap: 0.8rem;

    list-style: none;
}

.options ul li{

}

.options a {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    text-decoration: none;

    font-weight: 500;
    font-size: 1rem;
    letter-spacing: -1px;

    padding: 1.2rem 1.87rem;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    overflow: hidden;
    border-radius: 20px;

    transition: all 300ms ease;
}

.options a:hover{
    transform: scale(1.01);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.options a i{
    transition: all 300ms ease;
}

.option .chevron{
    transform: scale(1.2);
    opacity: 90%;
}

.footer-info{
    display: grid;
    gap: 10px;
}