      
html { 
    height: 95%; 
    width: 100%; 
} 

p { 
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body { 
    background-color: black;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    height: 95%; 
    width: 95%; 
    margin: 0; 
    color: white; 
    justify-self: center; 
} 

img { 
    max-width: 50%;
    height: auto; 
}

.columns { 
    display: flex; 
    flex-direction: row; 
    justify-content: space-between; 
    height: 100%; 
    width: 100%; 
    gap: 5px; 
} 
          
.viewporthidden { 
    background-color: rgb(51,51,51);
    width: 70%; 
    border-radius: 10px; 
    transform: translate(-120%, 5%);
} 
               
.viewport { 
    background-color: rgb(51,51,51);
    transform: translateY(5%); 
    width: 70%; 
    border-radius: 10px; 
    transition: ease-in-out 0.5s; 
} 
     
.contextmenufocussed { 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    width: 30%; 
    background-color: rgb(51,51,51);
    padding: 2px; 
    border-radius: 10px; 
    transform: translate(-120%, 5%);
    height: 100%; 
    align-items: center;
    text-align: center;
    justify-content: center;
} 
     
.contextmenuunfocussed { 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    width: 30%; 
    background-color: rgb(51,51,51);
    padding: 2px; 
    border-radius: 10px; 
    align-items: center;
    transform: translateY(5%); 
    transition: ease-in-out 0.5s; 
    text-align: center;
    align-content: center; 
    justify-content: center;
} 

input[type="file"] {
    display: none;
}

.file-button { 
    cursor: pointer;
    background-color: rgb(91,91,91);
    border-radius: 5px; 
    padding: 2px; 
    transition: ease-in-out 0.2s;
} 

.file-button:hover { 
    cursor: pointer;
    background-color: rgb(91,91,91);
    border-radius: 5px; 
    padding: 2px; 
    transform: scale(1.05);
    transition: ease-in-out 0.2s;
} 

.attributeSelectors { 
    display: none; 
    flex-direction: column; 
    gap: 5px; 
    width: 100%; 
}

.box { 
        background-color: rgb(100,100,100);
    border-radius: 5px; 
    padding: 2px; 

}
