@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap');

.body{
    background-size:cover; 
    background-image: url("https://media.licdn.com/dms/image/v2/D5612AQEIWS0WrRbn5Q/article-cover_image-shrink_720_1280/B56ZlRboz6KMAI-/0/1758007824691?e=2147483647&v=beta&t=BQxp09GCgRo_vQwWPkQaQyAPDmL9FcDyJG9wxmaglqo"); 
    color: white;
    font-family:'Space Grotesk', sans-serif;
}
.desktop-apps{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
    padding-top: 64px;
    padding-left:24px;
    max-width: 400px;

}
.appicons{
    text-align: center;
    padding: 16px;
    width: fit-content;
    transition: transform 0.2s ease;
}
.appicons img {
    width:64px; 
    height:64px; 
    cursor: pointer;
}
.appicons:hover {
    transform: scale(1.08);
}

.windows{
    font-family: monospace; 
    background-color: rgba(20,20,20,0.6); 
    backdrop-filter: blur(14px);
    width: 250px; 
    border-radius: 16px; 
    padding: 30px; 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: 
    translate(-50%, -50%); 
    text-align: center;
}
.close-button{
    cursor: pointer; 
    text-align: left;
    width: fit-content; 
    display: inline-block;
}
#camera {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#camera video {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
}
#fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}