body, html {
  font-family: "Roboto", sans-serif;
  margin: 0;
  min-height: 100vh;
  padding: 0;
  background: black;
  color: rgb(255, 255, 255);
}

h1 {
  font-weight: 900;
  font-style: italic;
}

p{
  margin:1px;
}

#date-list{
padding: 0px;
}

.microblog{
  padding:30px;
  margin:10px;
  border-style:solid;
  border-width: 1px;
  border-color: white;
}

.photo{
  position:static; 
  width:100%;
  border-style:solid;
  border-width: 3px;
  border-color: white;
  font-style:italic;
  margin:5px;
}

.entry{
  display:flex;
  flex-direction:column;
  align-items:baseline;
  justify-content:space-between;
  margin: 0%;
}

.background {
  background: url('/images/made-by-me/lifelog-background.png') no-repeat center center;
  background-size: cover;
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;  
  align-items: center;    
  justify-content: flex-start; 
  padding-top: 10vh;
  box-sizing: border-box;
}


.header {
  display: flex;
  justify-content: space-between;
  align-items:baseline;
  width: 790px;      
  max-width: 90%;    
  margin-bottom: 0%; 
  height: 10%;
  box-sizing: border-box;
  margin-bottom: -20px; 

}

.header a{
color:rgb(255, 255, 255);
text-decoration: none;
font-weight:700;
}

.header h1{
color:rgb(0, 0, 0);
text-decoration: none;
}

.right {
  overflow-y: auto;
  flex: 1;
  max-width: 500px;
  margin-left: 20px;
  max-height:680px;
  padding: 3%;
}

.left{
  overflow-y: auto;
  flex: 1;
  max-width: 200px;
  border-style:solid;
  border-width: 1px;
  border-color: white;
  padding: 1%;
}

.microblog-post {
  font-size: 14px;
  margin: 5px 0;
}

.date-button {
  border: solid;
  padding: 30px 50px;
  cursor: pointer;
  font-weight: 900;
  font-style: italic;
}

/* width */
::-webkit-scrollbar {
  width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #000000;
}

/* Handle */
::-webkit-scrollbar-thumb {
  border-style:solid;
  border-width: 1px;
  border-color: white;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #252525;
}

.date-button:hover {
  background-color: black;
  color:white;
}

.card {
  display: flex;
  flex-direction: row; 
  width: 800px;
  height:1080px;
  max-width: 90%;
  background-color: #000;
  padding: 20px;
  align-items: flex-start;
  justify-content: space-around;
  box-sizing: border-box;
}

.grow {
  transition: all 0.2s ease-in-out;
}

.grow:hover {
  transform: scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  h1.centre {
    font-size: 250%;
    text-align: center;
  }

  .card-inner,
  .card-outer {
    flex-direction: column;
    width: 100%;
    padding: 10px;
    margin: 30px;
  }

  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: -20px; 
  }

}


