body {
    background-image: url(../medias/bg/animgridbg50.gif);
    background-size: 10%;
    display: block;
    min-width: 750px;
    max-width: 1500px;
    margin: auto;
}

/* Windows */

.window,
.window-no-controls {
    background-color: white;
    border: 5px solid lightblue;
    border-top: 25px solid lightblue;
    padding: 2%;
    margin: 5%;
    margin-left: 10%;
    margin-right: 10%;
    opacity: 85%;
    position: relative;
    display: block;
}

.window:hover,
.window-no-controls {
    opacity: 95%;
}

.inner-window {
    margin: 0;
    padding: 0;
}

.flex {
    display: flex;
}

/* Image Windows */

.image-window {
    min-width: 150px;
    width: fit-content;
    padding: 0px;
    z-index: 100;
}

.image-window img {
    width: 100%;
}

#profile {
    width: 150px;
    position: absolute;
    bottom: calc(100% - 275px);
    left: calc(100% - 175px);
}

#hi {
    width: 175px;
    position: absolute;
    top: calc(100% - 150px);
    right: calc(100% - 200px);
}

/* Window Controls and Decorations */

.control-container {
    background: none;
    border: none;
    position: absolute;
    top: -21px;
    right: 0px;
    display: flex;
    gap: 10px;
}

.control-container button {
    border: none;
    background: none;
}

.control-container button:hover {
    background-color: rgb(230, 238, 245);
}

.window-title {
    position: absolute;
    top: -21px;
    left: 0px;
}

/* Status */

#status.warning {
    border-color: orange;
}

#status.ok {
    border-color: lightgreen;
}

/* Nav List */

#nav-list {
    width: 95%;
    margin: auto;
    margin-bottom: 5%;
}

#nav-list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#nav-list li::after {
    content: "|";
}

#nav-list li::before {
    content: "|";
}

/* Window List */

#window-list {
    width: 95%;
    margin: auto;
}

#window-list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#window-list button {
    width: 100px;
    border: 2px solid lightblue;
    border-top: 10px solid lightblue;
    background-color: white;
    opacity: 70%;
    margin: 5px;
}

#window-list button:hover {
    opacity: 95%;
}

/* Blink List */

#blinks {
    padding: 0;
}

#blinks ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#blinks img {
    width: 100px;
}

/* Notes */

#notes {
    margin-top: 10%;
    margin-bottom: 10%;
}

#ideas {
    background-image: url(../medias/bg/bliss.jpg);
    background-size: cover;
    padding: 0;
}

#notes .window-no-controls{
    margin: 1%;
    flex-grow: 1;
}

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

#status {
    width: 95%;
    margin: auto;
    margin-bottom: 3%;
    position: absolute;
    width: 325px;
    bottom: calc(100% - 75px);
    right: calc(100% - 275px);
    z-index: 1;
}

#lightbulb {
    width: 150ox;
    position: absolute;
    left: calc(100% - 150px);
    top: calc(100% - 175px);
}


/* Unique Window Styling */
header {
    text-align: center;
}

nav {
    background-image: url(../medias/bg/bliss.jpg);
    background-size: cover;
}

footer {
    text-align: center;
}

#about-blurb {
    width: 95%;
    margin: 0;
    margin-bottom: 1rem;
}