@media (max-width: 768px) {
    #not_show {
        display: none;
    }
    #logofin {
        min-width: 90%;
    }
}

@media (min-width: 768px) {
    #show_mobile {
        display: none;
    }
}

/* body css */

body {
    margin: 0;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
    cursor: none;
}

.cursor {
    mix-blend-mode: exclusion;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

.cursor2 {
    mix-blend-mode: exclusion;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 3;
}

.select {
    mix-blend-mode: exclusion;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.selectmini {
    mix-blend-mode: exclusion;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
}

/* nav css */

.navbar {
    background-color: rgba(219, 50, 77, 0.4);
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 5vw;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    height: 10vh;
}

.nav-item {
    display: flex;
    align-items: center;
}

.navbar-nav ms-auto me-auto mb-2 mb-lg-0 {
    justify-content: center;
}

.navbar img {
    width: 70%;
}

.navbar span {
    color: #fffff0;
}

.navbar a {
    font-family: MuseoModerno;
    display: inline-block;
    text-align: center;
    padding: 16px;
    font-size: 18px;
}

.nav-item a:hover {
    text-decoration: underline;
    text-decoration-color: #fffff0;
    cursor: none;
}

.nav-item img:hover {
    mix-blend-mode: exclusion;
}

/* footer css */

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin: 0%;
    position: relative;
    bottom: 0;
}

#logofin {
    width: 70%;
}