
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .header {
    color: #fff;
    padding: 10px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
  
  }
  
  
  #search {
    position: fixed;
    flex: 1; 
    margin-right: 10px;
    width: 1480px;
    height: 30px;
    font-size: 18px;
  }
  #search-btn{
    font-size: 18px;
    height: 34px;
    width: 200px;
    background-color: rgba(0, 0, 0, 0.855);
    color: #fff;
    margin-right: 10px;
    transition: 500ms;
  }
  #search-btn:hover{
    color: #fff;
    background-color: rgb(81, 79, 79);
    cursor: pointer;
  }
  
  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
  }
  
  .sermons-column {
    width: 35%;
    margin-bottom: 20px;
    
  }
  .content-column {
    width: 50%;
    margin-bottom: 20px;
 
  }
  .year-column {
    width: 15%;
    margin-bottom: 20px;

  }
  
  .column h2 {
    margin-top: 0;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  li {
    margin-bottom: 10px;
    cursor: pointer;
  }
  
  li:hover {
    text-decoration: underline;
  }
  
  #content {
    font-size: 18px;
    line-height: 1.5;
  }
  
  