@font-face {
    font-family: "w95f";
    src: url(fonts/w95f.woff);
}

body {
    margin: 0;
    background-color: #008080; /* Windows 95 blue background */
    display: flex;
    flex-direction: column;
    font-family: "w95f", sans-serif;
    width:100%;
}
.desktop {
    position: absolute;
    top: 0px;
    bottom: 48px; /* height of taskbar plus border */
    display:flex;
    flex-direction: row;
    width: 100%;
}
.taskbar {
    width: 100%;
    height: 45px;
    background-color: #818181; /* Windows 95 taskbar color */
    position: fixed;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
    border-top: 3px solid #c3c3c3;
    width: 100%;
    flex-direction: row;
}
#start {
    display: flex;
    align-items: center;
    padding: 1px 3px;
    border: 2px solid;
    background-color: #818181;
    border-bottom-color:  black;
    border-right-color:black;
    border-left-color:#c3c3c3;
    border-top-color: #c3c3c3;
}
#desktop-icons { /* container for desktop table*/
    flex-shrink: 0;
}
td { /* add padding to all table cells */
    padding: 5px;
    cursor: pointer;
}
.desktop-table { /* table containing the icons and text */
    align-items: center;
    text-align: center;
    border-spacing: 15px 20px;
    color: #fdffff;
    width:fit-content
}
#window-container {
    border: 2px solid;
    background-color: #c3c3c3;
    border-bottom-color:  black;
    border-right-color:black;
    border-left-color:#c3c3c3;
    border-top-color: #c3c3c3;
    flex-grow: 1;
    padding: 4px;
    margin: 30px;
    display: flex;
    flex-direction: column;
}
#window-top {
    height: 30px;
    background-color: #010081;
    color:#fdffff;
    font-size: 20px;
    font-weight: bolder;
    margin-bottom: 4px;
    padding-top: 6px;
    padding-left: 6px;
    flex-shrink: 0;
    display: flex;
    text-align: center;
}
#title{
    justify-content: left;
    text-align: left;
    flex-grow:1;
}
#close-button {
    background-color: #818181;
    border: 2px solid;
    background-color: #c3c3c3;
    border-bottom-color:  black;
    border-right-color:black;
    border-left-color:#c3c3c3;
    border-top-color: #c3c3c3;
    font-size: 15px;
    height: 20px;
    width: 20px;
    text-align: center;
    color:black;
    flex-shrink: 0;
    margin:3px;
    cursor: pointer;
}
#iframe{
    /* border: 10px solid red; */
    flex-grow: 1;   
    display:flex;
    background-color: white;
}

#clock {
    border: 2px solid;
    border-top-color:  black;
    border-left-color:black;
    border-right-color:#c3c3c3;
    border-bottom-color: #c3c3c3;
    padding:3px 6px;
    width: fit-content;
    right: 10px;
    position:absolute;
}
