@font-face {
    font-family: 'xp';
    src: url('fonts/windows-xp-tahoma.ttf');
}

body {
    margin: 0;
    background: url('images/wallpaper.jpg');
    background-size: 100% 100%;
    font-family: 'Arial', sans-serif;
    height: 100vh;
    overflow: hidden;
}



.title-bar {
    background: #003300;
    color: #00ff00;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 2px solid #00ff00;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 50px;
    z-index: 1;
}

.title-bar .title {
    font-weight: bold;
}

.title-bar .controls {
    display: flex;
}



.xp-logo {
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    position: absolute;
}

#shutdown {
    display: none;
}

.shutdown-logo {
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    position: absolute;
}

#restart {
    display: none;
}

.black-logo {
    width: 100%;
    height: 100%;
    z-index: 99;
    position: absolute;
}

.restart-logo {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 20%;
    justify-content: center;
    z-index: 999;
    position: absolute;

}

.main-content {
    flex-grow: 1;
    position: relative;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-family: 'xp', sans-serif;
}


.desktop-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 20px;
    left: 20px;
}


.desktop-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: 80px;
}


.desktop-icon img {
    width: 48px;
    height: 48px;
    margin-bottom: 5px;
}


.desktop-icon span {
    font-size: 20px;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    /* For readability */
    font-family: 'xp', sans-serif;
}


#start-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: linear-gradient(#FFFFFF, #717171);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    border-top: 2px solid #ffffff;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.4);
}


.start-button {
    display: flex;
    align-items: center;
    background-color: #32a32e;
    padding: 5px 15px;
    border-radius: 3px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    box-shadow: inset -1px -1px 0px rgba(255, 255, 255, 0.4);
}

.start-button img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}


.taskbar-programs {
    display: flex;
    gap: 10px;
    flex-grow: 1;
    justify-content: flex-start;
    margin-left: 20px;
}
.taskbar-programs a {
    display: inline-flex;
    margin: 0;
    padding: 0;
    text-decoration: none;
}


.taskbar-item {
    background: black;
    padding: 5px 10px;
    border-radius: 3px;
    color: white;
    box-shadow: inset -1px -1px 0px rgb(0, 0, 0);
    display: flex;
    align-items: center;
    gap: 5px;
}

.taskbar-programs img {
    height: 20px;
}

.taskbar-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 1.5%;
}

.taskbar-icons img {
    width: 18px;
    height: 18px;
}


.start-button:hover,
.taskbar-item:hover {
    background-color: #3c3c3c;
}

.navbar-indent {
    margin-left: 15px; 
    color: #333;       
    font-style: italic;
    font-size: smaller;
}

.navbar a {
    color: black;
    text-decoration: none;
}

.navbar h1 {
    padding-bottom: 10px;
    border-bottom: solid #00ff00;
}
.back-button {
    cursor: pointer;
    color: #000000;
    font-size: 1.2em;
    margin-right: 10px;
    transition: color 0.3s;
    text-decoration: none;
    font-size: smaller;
}

.back-button:hover {
    color: #32a32e;
}