/* Styling for index.html */

body{
    height: 100%;
}

#background{

    position:fixed;


    background-image: url("../imgs/windows_background.jpg");

    height: 100vh;
    width: 100vw;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#console{
    margin-top: 100px;
    margin-bottom: 50px;

    background-color: black;

    height: 600px;
    width: 100%;

    min-height: 400px;
}

@media screen and (max-width: 992px){
    #console{
        margin-top: 50px;
        height: 900px;
        width: 100%;
    }
}

#console #main_content{
    height: 100%;
    overflow-y: scroll;
}

#top-bar{
    background-color: white;
    width: 100%;
    height: 35px;
    padding: 5px;
    display: inline-block;
}

#cmd_icon{
    height: 100%;
    float: left;
    margin-right: 5px;
}

#right_toolbar > p{
    float: right
} 

#main_content{
    font-family: 'Cascadia Code', sans-serif;
    padding: 10px;
    color: white;

}

#main_content > p{
    margin-bottom: 0;
}

.scrolling_container{
	display: none;
    margin-top: 30px;
}

#final_scroll_container{
    text-align: center;
    width: 100%;
    font-size: 1.25em;
    margin-top: 10px;
}

#final_scroll_container a{
    color: #78C475;   
}

#final_scroll_container a:hover{
    text-decoration: none;
    color: #008F11; 
}

.large_ascii{
    font-size: 9px;
}