body {
 background-image: url("2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'Gamja Flower', serif;
  font-size: 25px; /* makes it big */
  color: #a7c5ec;
  
  #intro{
    width: 800px;
    height: auto;
    padding: 10px;
    margin: 20px auto;
    font-size: 23px;
    border: 1px solid #7f9ef5;
    border-radius: 12px; /* rounded corners */
  }

 
  #updates {
    background: rgba(25, 25, 27, 0.678);
    padding: 20px;
    padding-left: 30px;
    margin: 15px auto;
    width: 700px;
    height: 300px;
    overflow-y: auto;     /* Enable vertical scrolling */
    border-radius: 12px; /* rounded corners */
    border: #5ba4df52 1px solid;
    scrollbar-color: #5ba4df #1a1a1b4d; /* thumb and track color */
    scroll-padding: 10px;
}

#updates h4 {
  font-family: "Delius Swash Caps", cursive;
  color: #5ba4df;
  margin-bottom: 8px;
  
}

#updates ul {
  list-style-type: none; /* remove default bullets */
  padding-left: 0;
}

#updates li {
  margin-bottom: 8px;
  font-family: "Sour gummy", cursive;
  color: #a7d2f5;
  font-size: 15px;
}

.divider {
    height: 2px;
    background: #b2b4f325;
    border: none;
    margin: 20px 0;
    width: 100%;
}

}