@import url('https://fonts.cdnfonts.com/css/px-sans-nouveaux');

body {
    background-image: url("img/bg.png");
    background-size: cover;
    font-family: 'Px Sans Nouveaux', sans-serif;
}
.window {
    display: none; /* This hides the window by default */
    position: absolute;
    top: 150px;
    left: 150px;
    width: 400px;
    background-color: black;
    border: 2px solid #444;
    color: lime;
    font-family: monospace;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.icon-item{
    text-align: center;
    font-size: 8px;
    color: white;
    line-height: 12px;
}
.icons {
    display: flex;
    flex-direction: column; /* Stack vertically */
    align-items: flex-start; /* Align images to the left */
    gap: 2vh; /* Spacing between images */
}

.icons img {
    height: auto;     /* maintain aspect ratio */
    display: block;   /* makes sure there's no unwanted spacing */
}
.taskbar {
    background-color: white;
    position: absolute;
    left: 0;
    bottom: 0;
   
    width: 100%;
    font-size: 3vh;
}

.taskbar * {
    padding: 5px 10px;
    font-size: 2.7vh;
    border: 1px solid rgb(0, 0, 0);
}

.start{
    font-family: 'W95FA', sans-serif;
    font-size: 25px;
    border: 2px solid;
    background-color: rgb(207, 207, 207);
    cursor: pointer;
    padding: 5px 10px;
    margin-right: 0%;
    margin-left: -5px;
}
.start:hover{
    background-color: rgb(161, 161, 161);
    
}
.start:active{
    border: 2px solid;
     border-color: #000000 #fff #fff #000000;
}