
body{
    margin: 0;
}
.content {

    background-color: yellow;
    margin-left: 400px;
    margin-top: -20px;
}
.item {
    border-top: 1px solid black;
}
.nav{
   
    position: sticky;
    background-color: gray;
    color: white;
    width: 100% - 400px;
    display: flex;
   top: 0px;
   z-index: 100000000000;
}
.nav p{
    margin-Left: 200px;
}
.side{
    position: fixed;
    background-color: red;
  
    width: 400px;
    height: 100vh;
    top: 40px;
    

    

}
.img{
    width: 400px;
    height: 400px;
    background-color: red;
    background-image: url('chris-mills.jpg');
    background-size: contain;
}
.container{
    overflow: scroll;
    height: 35%;

}
.container p{
    font-size: 20px;
    color: white;
}