body {
    background-color:#000000;
    color:#efdee0; 
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#container {
    max-width: 1500px;
    height: 1200px;
    margin: 5% auto;

}

#nav{
    max-width: 1000px;
    height: 50px;
}

#navigation { 
     width: 100%;
     height: 40px;
    border: 1px solid white;
}

#navigation ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}

#navigation li {
    padding-top: 5px;
  }

#sidebar1{
    height: 50%;
    padding: 30px;
    max-width:200px;
    border-radius: 20px;
    border: 1px solid white;
    float:left;
    display:inline;
}

#sidebar1 h1{
   font-size:25px;
   text-align: center; 
}

#sidebar a{
    color:
}

#content{
    border: 1px solid white;
    width:700px;
    float: left;
    display:inline;
    margin-left:50px;
    padding:30px;
    overflow: auto;

}



