.full-screen {
    width: 100%;
    height: 100vh;
}

.screen {
    width: 100%;
    height: 80vh;
}

.screen1 {
    position: fixed;
    top: 10vh;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center; 
    flex-direction: column;
    background-color: var(--white);
}
.screen2 {
    position: fixed;
    top: 95vh;
    z-index: 2;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center; 
    flex-direction: column;
}
.screen3 {
    position: fixed;
    top: 100vh;
    z-index: 3;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 30px;
}

.tab {
    width: calc(100% - 40px);
    height: calc(5vh - 2px);
    background-color: var(--black);
    /* outline: 2px solid red;  */
    margin-top: 2px;
    z-index: 4;
    padding: 0 20px;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.tab:hover{
    background-color: var(--dark-red);
}

.tab1 {
    position: fixed;
    top: 90vh;
}

.tab2 {
    position: fixed;
    top: 95vh;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 20px solid var(--white);
}

.uTurn {
    transform: rotate(180deg);
}

.mapTriangle {

}

.museumTriangle {
    
}