@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

* {
    font-family: 'Inter', sans-serif;
    color: #838087;
}

html, body {
    margin: 0%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#backgroundVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

#searchwrapper {
    width: fit-content;
    margin: 50px auto;
    
    > form > #lens {
        display: flex;
        position: absolute;
        padding: 10px;
    }
    > form > input {
        caret-color: #E4E1E8;
        height: 40px;
        width: 500px;
        font-size: 20px;
        padding: 5px;
        border: solid thin transparent;
        border-radius: 1em;
        display: block;
        background-color: #444446;
        padding-left: 45px;
        outline: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        transition: box-shadow 0.3s ease-in-out;
    }
}

footer {
    width: 100%;
    height: fit-content;
    left: 0;
    bottom: 0;
    position: absolute;
}

#menubar {
    width: fit-content;
    margin: 20px auto;
    padding: 15px;
    border: solid thin #444446;
    border-radius: 2em;
    backdrop-filter: blur(10px);
    
    > .items {
        display: inline-block;
        width: 96px;
        height: 96px;
        background-color: #444446;
        border: solid thin transparent;
        border-radius: 1em;
        z-index: 10;
        margin-right: 20px;

        &:last-child {
            margin-right: 0;
        }

        transition: 0.5s;
        &:hover {
            scale: 1.3;
        }
    }
}

.items {
    cursor: pointer;
    text-align: center;
}

.items .icon {
    width: 30px;
    height: 30px;
}