html{
    background-image: url("../img/tasmania-snow-covered-mountain-3php33ng18vdj8jl.jpg");
    background-size:cover;
    height:100%;
    font-family: 'Courier New', Courier, monospace;
}

body{
    margin:0px;
    height:100%;
    display: flex;
    flex-direction: row;
}


#nav{
    background-color: rgba(0,0,0,0.7);
    width:300px;
    padding:20px;
    & .logo, .logo a{
        font-size:25px;
        color:#fff;
        text-align: center;
        text-decoration: none;
    }
}
#content{
    flex:1;
    margin:20px;
    padding:20px;
    background-color:rgba(255,255,255,0.9);
    overflow-y: auto;
}

