body {
    background-image: url('../resources/backgrounds/space_white.svg');
}


main {
    margin: 0 70px;
    display: flex;
    gap: 70px;
    max-width: 200vh;
    /*border: 2px solid white;*/    /* -----> SHOWS MAIN FLEXBOX BORDER */
}
article {
    background-color: #425090;
    color:  lightgray;
    border: 5px solid #494949;
    border-radius: 12px;
    padding: 10px 25px;
    box-shadow:10px 10px 10px #00000033;
    max-width: 55%;
    font-size: 0.9em;
}
section {
    display: flex;
}


.contentWindow {
    background-color: #0f0f0f;
    background-image: url('../resources/gifs/screen-lines.gif');
    border: 10px groove #494949;
    border-radius: 10px;
    padding:3%;
    max-width: 82%;
    display: flex;
    gap: 5%;
}
.contentWindow p {
    font-size: 1.2em;
}
.sidebar {
    margin-top: 10px;
    flex-direction: column; 
    align-items: center;
    max-width: 18%;
}


#todolist {
    background-color: #243065;
    color: #8e9cd8;
    font-family: candara,sans-serif;
    border: 4px solid #121b44;
    border-radius: 7px; 
    padding: 0.5%;
    padding-left: 3%;
    margin: 0;
    max-width: 18%;
    align-items: center;
}
#todolist h3 {
    margin-bottom: 10px;
    margin-top: 5px;
    color: lightgray;
    font-family:georgia, serif;
    position: relative;
    left:-15%;
}
#todolist li { 
    margin-bottom: 5px;
    font-size: 0.9em;
}

#learnWithMe {
    background-color: #121b44;
    color: lightgray;
    font-family: candara,sans-serif;
    border: 4px solid #313e77;
    border-radius: 7px; 
    padding: 0.5%;
    padding-left: 3%;
    margin: 0;
    max-width: 18%;
    align-items: center;
}
#learnWithMe h3, h5 {
    color: #8e9cd8;
    margin-top: 5px;
    margin-bottom: 10px;
    font-family:georgia, serif;
    position: relative;
    left: -15%;
}
#learnWithMe li { 
    margin-bottom: 5px;
    font-size: 0.9em;
}


.innerList {
    list-style: circle;
    color: lightgray;
}


#constructionText {
    font-size:1.8em;
    color: black;
    text-align: center;
    border: 10px groove #ff6a00;
    background-color: #ffdd00;
    background-image: url('../resources/gifs/screenlines_construction.gif');
    margin: 50px auto;
    max-width: 40%;
    padding: 0.5%;
}