.blog {
    justify-content: center;
    margin: 50px;
    background: black;
}


body {
  height: 5000px;
  background: linear-gradient(141deg, #0fb8ad 0%, #1fc8db 51%, #2cb5e8 75%);
}
p {
  
  /* 14px/16=0.875em */
   color: white;
}

body {
  font-family: 'Aldrich', sans-serif;
   color: #4E4E4E;
}

/* Header/Blog Title */
.header {
  padding: 20px;
  font-size: 25px;
  text-align: center;

}


.sidenav {
  width: 140px;
  position: fixed;
  z-index: 1;
  top: 230px;
  left: 12px;
  overflow-x: hidden;
  padding: 8px 0;
  background-image: url('art/whitegrad.png');
  background-repeat: no-repeat;
  background-attachment: fixed;  
  background-size: cover;
}


.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 25px;
  color: #2196F3;
  display: block;
}

.sidenav a:hover {
  color: #0FFF00;
}

.main {
  margin-left: 140px; /* Same width as the sidebar + left position in px */
  font-size: 18px; /* Increased text to enable scrolling */
  padding: 20px 10px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}





/* Add a black background color to the top navigation */
.topnav {
  background-image: url('art/whitegrad.png');
  overflow: hidden;
   background-repeat: no-repeat;

}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #FF0064;
  text-align: left;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 17px;
  
  
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #04AA6D;
  color: black;
}












