

body {
    margin: 0px;
    overflow: hidden;
}

video {
    position: absolute;
    bottom: 0px;
    right: 0px;
    min-width: 100%;
    min-height: 100%;
    z-index: -1000;
}

#filtro {
    background-color: rgba(250, 235, 215, 0.8);
    width: 100vw;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    display: flex;
    justify-content: center;
    align-items: center;
}

#filtro>div input {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#filtro>div a {
    color: black;
    font-weight: 600;
    text-decoration-style: dotted;
    text-underline-offset: 5px;
}

#filtro>div a:hover {
    text-decoration: underline;
}

form input {
    padding: 10px;
    padding-right: 60px;
    padding-left: 20px;
    margin-bottom: 10px;
    font-style: italic;
}

form input[type="submit"] {
    padding: 10px 50px;
    border-radius: 10px;
    border: 0px;
    background-color: rgb(60, 52, 47);
    color: white;
}

form input[type="submit"]:hover {
    color: rgb(255, 177, 74);
}