/* MAIN WEBSITE THINGS */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: whitesmoke;
    background: url("../images/background-light.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    transition: background-color 160ms linear;
    -webkit-transition: background-color 160ms linear;
}

main {
    margin: 0 auto;
    margin-top: 50px;
    background-color: rgb(248, 248, 248);
    width: 75%;
    outline: 1px solid black;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}

header {
    display: flex;
    justify-content: space-between;
    background-color: white;
    outline: 1px solid black;
    margin: 0;
}

article {
    margin-left: 10px;
    margin-right: 10px;
}

footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 32px;         
    background: #f1f1f1d7;
    color: black;
    align-items: center;
    padding: 0 12px;
    display: flex;
}

/* BUTTON STYLING */
button {
    background-color: rgb(231, 241, 251);
    color: black;
    border: 1px solid rgb(154, 205, 250);
    padding: 5px;
    width: 80px;
}

button:hover {
    background-color: rgb(214, 227, 238);
    border: 1px solid rgb(155, 202, 243);
}

/* ADJUSTMENTS FOR SMALL SCREENS */
@media screen and (max-width: 750px) {
    main {
        width: 95%;
        margin-top: 15px;
    }
}

@media screen and (max-width: 540px) {
    main {
        width: 100%;
        margin-top: 0px;
    }
}



/* WINDOW BAR */
.winbar-text {
    margin-top: 5px;
    margin-left: 3px;
}

.goto-emptysite {
    cursor: default;
    text-decoration: none;
    color: black;
}

.close-button {
    text-align: center;
    width: 25px;
    padding: 5px;
}

.close-button:hover {
    background-color: rgb(235, 0, 0);
}


/* TASKBAR */
.power-button-vector {
    margin-left: 0px;
    margin-top: 4px;
}

.power-button-vector:hover {
    cursor: not-allowed;
}

.open-window, .closed-window {
    margin-left: 10px;
    font-size: 24px;
}

.open-window {
    background-color: #fafafabb;
    border-radius: 5px;
}

.closed-window:hover {
    background-color: #fafafabb;
    border-radius: 5px;
}

.open-window:hover {
    background-color: #ffffffbb;
}

.taskbar-app-text {
    margin-bottom: 20px;
}

.taskbar-appicons {
    cursor: default;
    text-decoration: none;
}

#current_time {
    margin-left: auto;
}

/* MISC TASKBAR ICONS */
.youtube-icon {
    margin-top: 8px;
    width: 30px;
    height: 18px;
}

/* ADJUSTMENTS FOR YOUR VIEWING PLEASURE */
@media (prefers-color-scheme: dark) {
    body {
        background-color: black;
        color: #f0f0f0;
        background: url("../images/background-dark.jpg");
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
    }

    main {
        background-color: rgb(56, 56, 56);
    }

    header {
        background-color: black;
    }

    .goto-emptysite {
        color: white;
    }
}