html, body {
    background-color: white;
    color: black;
    background: url("assets/windows_xp_bliss-wide.jpg");
    background-size: 100vw 100vh;
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6, span, p {
    color: white;
    font-family: "Segoe UI", Arial, sans-serif;
    /* font-family: Tahoma, "Trebuchet MS", sans-serif; */
    font-weight: 100;
    text-align: center;
}

* {
    user-select: none;
}

.centre {
    margin: auto;
}

#header {
    width: 90%;
}

/* https://frutiger-aero.neocities.org/tutorials/ */
.glossy-tile {
    width: fit-content;
    min-width: 400px;
    height: 400px;
    border-radius: 15px;
    background-size: 100% 100%;
    background-image: radial-gradient(circle at top,rgba(65, 123, 78, 0.95) 50%, rgba(90, 155, 104, 0.95) 90%);
    overflow: hidden;
    box-shadow: 0px -4px rgba(255, 255, 255, .25), 0px 4px rgba(0, 0, 0, .25);
    filter: drop-shadow(0 4px 6px);
    border: solid 1px rgba(0, 0, 0, .2);
}

.glossy-tile > #ellipse {
    position: absolute;
    width: 125%;
    height: 60%;
    border-radius: 75%;
    transform: translate(-10%, -20%);
    background-image: linear-gradient(rgba(212, 212, 212, 0.5), rgba(212, 212, 212, .04));
}

.glossy-tile > #icon {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: invert(100%) drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.8));
    opacity: 80%;
}

/* Desktop */
#desktop {
    width: 100%;
    height: 96%;
    position: absolute;
    left: 0;
    top: 0;
}

.desktop-icon {
    position: absolute;
    width: 8vh;
    height: 10vh;
}

.desktop-icon > * {
    pointer-events: none;
    user-select: none;
    margin: 0;
}

.desktop-icon > div {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.desktop-icon > div > img {
    width: 65%;
}

.desktop-icon > div > p {
    margin: .25vh;
    font-family: Tahoma, "Trebuchet MS", sans-serif;
    width: 125%;
    font-size: 1.5vh;
    text-shadow: black .1vh .1vh;
}

.desktop-icon > .cursor-ghost {
    filter: opacity(.75);
}