#top-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    background-color: rgb(137, 37, 37);
    padding: 15px 30px;
    margin-top: -10px;
    margin-left: -7px;
    margin-right: -7px;
    h1 {
        margin: 0px;
        font-size: 2.5rem;
        text-align: center;
        color: white;
        font-family: "Space Grotesk", sans-serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
    }
}

#welcome {
    border: solid;
    border-color: rgb(137, 37, 37);
    border-width: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    width: fit-content;
    position: absolute;
    top: 38%;
    left: 78%;
    border-radius: 15px;
    transform: translate(-50%, -50%);
    overflow: hidden;
    h1 {
     color: rgb(137, 37, 37);
     font-family: "Tourney", sans-serif;
     font-optical-sizing: auto;
     font-weight: 500;
     font-style: normal;
     font-variation-settings:
    "wdth" 100;
    }
}

#mov {
    width: 482px;
    height: 200px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

#quotes {
    border: solid;
    border-color: rgb(137, 37, 37);
    border-width: 5px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    width: fit-content;
    position: absolute;
    top: 70%;
    left: 75%;
    border-radius: 15px;
    transform: translate(-50%, -50%);
    max-width: 800px;
    overflow: hidden;
    h1 {
     color: rgb(137, 37, 37);
     font-family: "Tourney", sans-serif;
     font-optical-sizing: auto;
     font-weight: 500;
     font-style: normal;
     font-variation-settings:
    "wdth" 100;
    padding: 20px 20px 0 20px;
    }
    h2 {
        background-color: rgb(137, 37, 37);
        padding: 10px;
        border-radius: 999px;
        font-size: 1rem;
        text-align: center;
        color: white;
        font-family: "Space Grotesk", sans-serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
        cursor: pointer;
    }
}

#terminal {
    border: solid;
    border-color: rgb(137, 37, 37);
    border-width: 5px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    position: absolute;
    top: 60%;
    left: 50%;
    border-radius: 15px;
    transform: translate(-50%, -50%);
    width: 300px;
    overflow: hidden;
    h1 {
     color: rgb(137, 37, 37);
     font-size: 1.8rem;
     font-family: "Tourney", sans-serif;
     font-optical-sizing: auto;
     font-weight: 500;
     font-style: normal;
     font-variation-settings:
    "wdth" 100;
    padding-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
    }
    h2 {
        font-size: 1rem;
        width: 100%;
        text-align: left;
        color: white;
        font-family: "Space Grotesk", sans-serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
        padding-left: 30px;
    }
}

#log {
    background-color: black;
    color: white;
    font-size: 1rem;
    width: 92%;
    text-align: left;
    color: white;
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    cursor: pointer;
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: -10px;
    scrollbar-width: none;
    scrollbar-width: 0;
}

#in {
    background-color: black;
    color: white;
    outline: none;
    border: none;
}

#in:focus {
    outline: none;
    border: none;
    font-size: 1rem;
    text-align: left;
    color: white;
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

#calc {
    border: solid;
    border-color: rgb(137, 37, 37);
    border-width: 5px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    position: absolute;
    top: 55%;
    left: 23%;
    border-radius: 15px;
    transform: translate(-50%, -50%);
    max-height: 600px;
    overflow: hidden;
    h1 {
     color: rgb(137, 37, 37);
     font-size: 2.5rem;
     font-family: "Tourney", sans-serif;
     font-optical-sizing: auto;
     font-weight: 500;
     font-style: normal;
     font-variation-settings:
    "wdth" 100;
    padding: 20px;
    }
    h2 {
        background-color: rgb(137, 37, 37);
        padding: 10px;
        border-radius: 999px;
        font-size: 1rem;
        text-align: center;
        color: white;
        font-family: "Space Grotesk", sans-serif;
        font-optical-sizing: auto;
        font-weight: 500;
        font-style: normal;
        cursor: pointer;
        height: 20px;
        width: 20px;
    }
}

#buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    padding: 20px;
}

#welcome-header, #quotes-header, #terminal-header, #calc-header {
    cursor: pointer;
    background-color: #212121;
    display: flex;
    width: 100%;
    box-sizing: border-box; 
    justify-content: right;
    padding: 2px;
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
}

#welcome-close, #quotes-close, #terminal-close, #calc-close {
    width: 16px; 
    height: 16px; 
    cursor: pointer; 
    background-color: rgb(137, 37, 37);
    border-radius: 16px; 
    border: solid 1px rgba(0, 0, 0, 0.25); 
    margin-right: 6px;
}

.desktop-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    cursor: pointer;
    background-color: rgb(137, 37, 37);
    border-radius: 30px;
    text-align: center;
    border: solid 1px rgba(0, 0, 0, 0.25);
    padding: 10px;
    margin: 15px;
    margin-top: 37px;
    color: white;
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

html, body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow: hidden; 
}

#wallpaper1 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("wallpaper1.JPG");
    background-color: black;
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: center calc(50% - 25px);
    box-sizing: border-box;
    z-index: -1;   
}

#wallpaper2 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("wallpaper2.JPG");
    background-color: black;
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: center calc(50% + 35px);
    box-sizing: border-box;
    z-index: -1;   
}

#wallpaper3 {
    display: flex;
    position: fixed;
    top: 0;
    left: 0; 
    width: 100vw;
    height: 100vh;
    background-image: url("wallpaper3.JPG");
    background-color: black;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center calc(50% + 50px);
    box-sizing: border-box;
    z-index: -1;   
}

#wallpaper4 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("wallpaper4.jpg");
    background-color: black;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center calc(50% + 50px);
    box-sizing: border-box;
    z-index: -1;   
}
