.projects{
    z-index: 100;
}

.curr-file{
    background-color: rgb(234, 128, 152);
}

.file-content{
    grid:flex;
    flex-direction: row;
    padding-top: 2vh;
}
.tv-screen {
    display: flex;
  }
  
  .tv-screen-window img {
    position: absolute;

    left: 12vw;
    z-index: 2;
    height: 59vh;
    width: 40vw;
    
  }
  
  .screen-picture img{
    position: absolute;
    top:7vh;
    left: -35vw;
    z-index: 1;
    height: 45vh;
    width: 32.5vw;
    opacity: 0;
    visibility: hidden;
    transition: visibility 5ms , opacity 500ms;
  }





.tv-buttons{
    position: absolute;
    right: 15vw;
    height: 55vh;
    background-color: #822a3e;
    border-radius: 0 50px 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 2vh;
    padding-bottom: 2vh;
    padding-left: 2vw;
    padding-right: 2vw;
    z-index:3;
}


.tv-buttons button{
    font-family: Gill;
    font-size: 3.5vh;
    color: #822a3e;
    background-color: #e7eea9;
    border-radius: 25px 25px 25px 25px;
    border-width: 0.5vw;
    border-color: #ea748e;    
    width: 100%;
    width: 15vw;
}

.tv-buttons button:hover{
    color: #822a3e;
    color: #e7eea9;
    background-color: #ea748e;  
    cursor: url(custom_cursor_hover.png),auto;

}

.tv-buttons button:hover .screen-picture img{ 
    visibility: visible;
    opacity: 1;
}





@media only screen and (max-width: 1100px) and (max-device-width: 1200px){
    .tabs{
        margin-right: 0;
    }
    .tv-screen-window{
        display: none;
    }
    
    .tv-buttons{
        border-radius: 25px 25px 25px 25px;
        width: 70vw;
        position: relative;
        border-radius: 25px 25px 25px 25px;
        width: 70vw;
        right: 0;
        left: 0;
    }

    .tv-buttons button{
        width: 50vw;

    }

    .screen-picture img{
        display: none;
    }


}

@media (max-width: 900px){
    .tabs{
        margin-right: 0;
    }

    .home, .about, .contact{
        display: none;
    }

    .projects{
        display: initial;
    }
    .tv-screen-window{
        display: none;
        width: 100vw;
    }

    .file-content{
    }
    
    .tv-buttons{
        position: relative;
        border-radius: 25px 25px 25px 25px;
        width: 70vw;
        right: 0;
        left: 0;
    }

    .tv-buttons button{
        width: 50vw;

    }
}




.is-mobile.tv-screen-window{
    display: none;
}

.is-mobile.tv-buttons{
    border-radius: 25px 25px 25px 25px;
    width: 70vw;
}

.is-mobile.tv-buttons button{
    width: 50vw;

}

.is-mobile.home{
    display: none;
}

.is-mobile.projects{
    display:initial;
} 

.is-mobile.sticker{
    display: none;
}