body {
    margin: 0;
    overflow: hidden;
    font-family: system-ui;
    cursor: url("images/cursor.png"), auto;
    user-select: none;
}

.screen {
    width: 100%;
    height: 100vh;
    overflow: auto;
    scroll-behavior: smooth;
}

#startupScreen {
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
}

#loadBar {
    width: 500px;
    height: 50px;
    background-color: rgba(255, 255, 255, .5);
    border: 1px solid white;
    overflow: hidden;
}

#progress {
    width: 0;
    height: 100%;
    background-color: white;
    transition: 0.1s;
}

#lockscreen {
    background-image: url("images/blurryWallpaper.png");
    background-size: 100% 100vh;
}

.card {
    width: 50%;
    height: 50vh;
    margin-left: 25%;
    margin-top: 25vh;
    background-color: white;
    border: 5px outset lightgrey;
    text-align: center;
}

#lockClock {
    font-size: 5rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    cursor: url("cursorText.png"), text;
}

::selection {
    background-color: rgba(0, 255, 127, .5);
    color: rgb(0, 127, 63);
}

a {
    color: darkblue;
    text-decoration: none;
    cursor: url("images/cursorHover.png"), auto;
}

a:hover {
    text-decoration: underline 1px solid darkblue;
}

#login {
    margin-bottom: 25vh;
}

#input {
    width: 50%;
    height: 50px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .5);
    overflow: hidden;
    border-radius: 50px 50%;
    background-image: linear-gradient(rgba(0, 255, 127, .5), rgba(0, 255, 255, .5));
}

#input input {
    width: 75%;
    height: 100%;
    padding: 0;
    margin: 0;
    border: none;
    padding-left: 10px;
    background-color: transparent;
    font-size: 2rem;
    color: white;
}

#input button {
    width: 25%;
    height: 100%;
    padding: 0;
    margin: 0;
    border: none;
    background-color: rgba(0, 0, 0, .5);
    color: white;
    transition: 0.1s;
}

#input button:hover {
    background-color: rgba(255, 255, 255, .5);
    color: black;
}

input {
    cursor: url("images/cursorText.png"), auto;
}

button {
    cursor: url("images/cursorHover.png"), auto;
}

#desktop {
    background-image: url("images/wallpaper.png");
    background-size: 100% 100vh;
    transition: 1s;
    overflow: hidden;
}

nav {
    width: 100%;
    height: 50px;
    background-image: linear-gradient(90deg, rgba(0, 255, 127, .5), rgba(0, 255, 255, .5));
    box-shadow: 0 5px 10px rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#taskbar {
    box-shadow: 0 -5px 10px rgba(0, 0, 0, .5);
    justify-content: space-between;
}

#startBtn {
    width: 50px;
    height: 50px;
    background-image: linear-gradient(green, red);
    margin-left: 40px;
    margin-bottom: 40px;
    transform: rotate(45deg);
    border: 1px solid white;
    transition: 1s;
    outline: 1px solid black;
    cursor: url("images/cursorHover.png"), auto;
}

#startBtn:hover {
    transform: rotate(405deg);
    background-image: linear-gradient(lightgreen, pink);
}

#contextMenu {
    width: 150px;
    height: fit-content;
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    border: 1px solid white;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .5);
    display: none;
    z-index: 99999;
}

#contextMenu button {
    width: 100%;
    color: white;
    border: none;
    border-bottom: 1px solid white;
    background-color: transparent;
    padding: 10px;
    transition: 0.1s;
}

#contextMenu button:hover {
    background-color: white;
    color: black;
    border-bottom: 1px solid black;
}

#desktopContent {
    width: 100%;
    height: calc(100vh - 100px);
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto auto auto auto;
    overflow: auto;
}

.desktopIcon {
    margin: 10px;
    text-align: center;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
}

.desktopIcon:hover {
    background-color: rgba(0, 0, 0, .5);
    border: 1px solid white;
}

.window {
    width: 50%;
    height: 50vh;
    position: absolute;
    margin: 100px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .5);
    transition: 0.1s;
}

.windowBar {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.windowContent {
    width: 100%;
    height: calc(100% - 50px);
    background-color: white;
    overflow: auto;
}

.draggableArea {
    width: calc(100% - 150px);
    height: 100%;
    color: white;
    -webkit-text-stroke: 1px black;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: left;
    background-image: linear-gradient(90deg, rgba(0, 255, 127, .5), rgba(0, 255, 255, .5));
}

.windowActionButtons {
    width: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.windowActionButtons button {
    width: 50px;
    height: 100%;
    font-size: 2rem;
    border-radius: 0;
    border: none;
    transition: 0.1s;
    color: white;
}

.minimizeBtn {
    background-color: yellow;
}

.minimizeBtn:hover {
    background-color: lightyellow;
}

.maximizeBtn {
    background-color: green;
}

.maximizeBtn:hover {
    background-color: lightgreen;
}

.closeBtn {
    background-color: red;
}

.closeBtn:hover {
    background-color: pink;
}

#recycleBin,
#folder,
#ioSearch,
#calculator,
#notepad,
#settings,
#clock,
#paint,
#toolbox,
#fes,
#flg,
#ioMail,
#iocnSearch,
#lmt,
#fhg,
#ioMaker,
#ioPlay {
    display: none;
}

.window:hover {
    box-shadow: 10px 10px 20px black;
}

.task {
    width: 150px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 10px;
    background-image: linear-gradient(90deg, rgba(0, 127, 0, .5), rgba(0, 0, 255, .5));
    cursor: url("images/cursorHover.png"), auto;
}

.task img {
    height: 30px;
}

.task:hover {
    background-image: linear-gradient(90deg, green, blue);
    color: white;
}

#recycleBinTask,
#storageTask,
#ioSearchTask,
#calculatorTask,
#notepadTask,
#settingsTask,
#clockTask,
#paintTask,
#toolboxTask,
#fesTask,
#flgTask,
#ioMailTask,
#iocnSearchTask,
#lmtTask,
#fhgTask,
#ioMakerTask,
#ioPlayTask {
    display: none;
}

.coolBtn {
    background-color: white;
    color: black;
    border: 1px solid black;
    margin: 10px;
    padding: 10px;
    cursor: url("images/cursorHover.png"), auto;
    transition: 0.1s;
    border-radius: 5px;
}

.coolBtn:hover {
    background-color: black;
    color: white;
    border: 1px solid white;
}

.deletedFile {
    padding: 10px;
    border-bottom: 5px solid black;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#recycleBinContent,
#folderContent {
    overflow: auto;
}

#startMenu {
    width: 250px;
    height: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, .5);
    margin-top: calc(100vh - 55px);
    border-top: 5px solid white;
    border-right: 5px solid white;
    box-shadow: 5px -5px 10px rgba(0, 0, 0, .5);
    transition: 0.1s;
    overflow-x: hidden;
    overflow-y: auto;
}

#myInput {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: none;
    background-color: rgba(255, 255, 255, .5);
    font-size: 1.5rem;
}

#myUL {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#myUL li {
    width: 100%;
    height: 50px;
    color: white;
    text-align: center;
    border-bottom: 1px solid white;
    transition: 0.1s;
    cursor: url("images/cursorHover.png"), auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

#myUL li:hover {
    background-color: rgba(255, 255, 255, .5);
    color: black;
    border-bottom: 1px solid black;
    text-decoration: none;
}

#myUL li a:hover {
    color: white;
    text-decoration: none;
}

#myUL li a {
    color: white;
    text-decoration: none;
}

#myUL li img {
    width: 25px;
}

#calculator {
    width: 30%;
}

.coolInput {
    background-image: linear-gradient(white, lightgrey);
    border: 1px solid black;
    color: black;
    border-radius: 25px;
}

select,
option {
    cursor: url("images/cursorHover.png"), auto;
}

#notepadNav,
#paintNavbar {
    width: 100%;
    height: 25px;
    background-color: #222222;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: white;
    transition: 0.1s;
}

#notepadNav p,
#paintNavbar p {
    cursor: url("images/cursorHover.png"), pointer;
}

#notepadNav p:hover,
#paintNavbar p:hover {
    color: #00FF55;
}

#codeOutput {
    width: 100%;
    height: 100%;
    padding: 10px;
    display: none;
    font-family: serif;
    overflow: auto;
}

#codeOutput a {
    color: blue;
    text-decoration: underline 1px solid blue;
}

.hotspot {
    border-top: 5px solid black;
    border-bottom: 5px solid black;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#noInternetScreen,
#noInternetScreenTwo {
    width: 100%;
    height: 100%;
    background-color: white;
    text-align: center;
}

.wallpaper {
    margin: 10px;
    border: 1px solid black;
    width: 100px;
    height: 75px;
    display: inline-block;
}

.wallpaper:hover {
    border: 1px solid lightgrey;
}

#aeroExample {
    width: 250px;
    height: 200px;
}

#paintNavbar {
    width: 100%;
    height: 100px;
    background-color: #222222;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: white;
    flex-direction: column;
}

#paintNavbar input {
    width: 75px;
}

#paintCanvas {
    margin: 10px;
    border: 1px solid black;
}

#paintNavbar div {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}

#downloadableApplications {
    width: 100%;
    height: 100%;
    overflow: auto;
}

.downloadableApplication {
    width: 100%;
    height: 50px;
    border-bottom: 5px solid black;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.downloadableApplication div {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 50%;
}

.downloadableApplication div img {
    width: 40px;
}

.consider {
    width: 100%;
    height: 100%;
    overflow: auto;
    text-align: center;
    display: none;
}

#fesInstallBar,
#fesDeleteBtn,
#fesOpenBtn,
#flgInstallBar,
#flgDeleteBtn,
#flgOpenBtn,
#ioMailInstallBar,
#ioMailDeleteBtn,
#ioMailOpenBtn,
#iocnSearchInstallBar,
#iocnSearchDeleteBtn,
#iocnSearchOpenBtn,
#lmtInstallBar,
#lmtDeleteBtn,
#lmtOpenBtn,
#fhgInstallBar,
#fhgDeleteBtn,
#fhgOpenBtn,
#ioMakerInstallBar,
#ioMakerDeleteBtn,
#ioMakerOpenBtn,
#ioPlayInstallBar,
#ioPlayDeleteBtn,
#ioPlayOpenBtn {
    display: none;
}

#considerFES,
#considerFLG,
#considerIOMail,
#considerIOCNSearch,
#considerLMT,
#considerFHG,
#considerIOMaker,
#considerIOPlay {
    display: none;
}