html,
body {
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
    width: 100%;
    height: 100%;
    background-color: black;
}

#main-video {
    display: block;
    width: 100svw;
    height: 100svh;
    object-fit: contain;
}

#link-button {
    text-decoration: none;
}

#link-button-text {
    position: fixed;
    top: 17px;
    left: 17px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 15.5px;
    min-width: 126px;
    padding: 0 10px;
    height: 36px;
    color: white;
    border-radius: 6px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: rgba(90, 90, 90, 0.6);
    z-index: 100;
    transition: background-color 0.3s ease;
}

#link-button-text:hover {
    background-color: rgba(88, 23, 122, 0.6);
}

@media (min-width: 768px) and (min-height: 768px) {   
    #link-button-text {
        font-size: 19.5px;
        min-width: 158px;
        height: 46px;
    }
}