body {background-color: black;
font-family: 'Poppins', sans-serif;
color: white;
}



/* The Side Bar Navigation */
.sidebar {
    margin: 0;
    padding: 0;
    width: 200px;
    background-color: black;
    position: fixed;
    height: 100%;
    overflow: auto;
}

/* Sidebar Links */
.sidebar a {
    display: block;
    color: white;
    padding: 14px;
    text-decoration: none;
    font-family: 'Gruppo', sans-serif;
}

/* Active/current link */
.sidebar a.active {
    background-color: blueviolet;
    color: white;
}

/* Links on mouse-over*/
.sidebar a:hover:not(.active) {
    background-color: red;
    color: white;
}

/* Page content. El valor de la propiedad del margen izquierdo debe empatar con el valor del width del side's bar */
div.content {
    margin-left: 200px;
    padding: 1px 16px;
    position: relative;
    text-align: center;
    color: white;
}

/* On screens that are less than 400px, display the bar vertically instead of horizontally */
@media screen and (max-width: 400px) {
    .sidebar a {
        text-align: center;
        float: none;
    }
    
}

.section {
  text-align: center;
  padding-left: 200px;
  padding-bottom: 50px;

}

.header {
  position: relative;
    padding-bottom: 50px;
    color: blueviolet;
    text-align: right;
       
}

.footer {
    padding-left: 200px;
  padding-top: 200px;
  text-align: center;
}



  
  

 