.body {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
    color: #333;
    background: url('./assets/jesus.png') no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    text-align: center;
}
.body1 {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
    color: #333;
    background: url('./assets/xustis.jpg') no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    text-align: center;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:space-between;
    margin: 0 auto;
    height: 85vh;
    width: 50vw;
    background:rgba(255, 255, 255, 0.6);;
    border-radius: 10px;
    overflow: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 40px;
    color: #333;
}
p {
    font-size: 26px;
    line-height: 1.6;
}
h2{
    font-size:32px;
}
.quote {
    font-style: italic;
    color: #666;
}
.quote-by {
    font-style: normal;
    font-size: 14px;
    color: #888;
}
.date {
    font-size: 14px;
    color: #888;
}
.header{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.footer{
    width: 100%;

}

.main-body{
    background-color: b;
    height: 100%;
    width: 80%;
}
.button {
    background-color: rgba(255, 255, 255, 0.7); /* White with 70% opacity */
    color: #333; /* Text color */
    border: none; /* Remove border */
    padding: 10px 20px; /* Padding */
    font-size: 16px; /* Font size */
    font-family: Arial, sans-serif; /* Font family */
    text-decoration: none; /* Remove underline */
    display: inline-block; /* Make it inline block */
    cursor: pointer; /* Cursor style */
    margin: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease; /* Smooth transition */
  }
  
  .button:hover {
    background-color: rgba(255, 255, 255, 0.9); /* White with 90% opacity on hover */
  }

  a {
    color: black; /* Set text color to black */
    text-decoration: none; /* Remove underline */
  }
  
  a:hover {
    color: black; /* Change color on hover if needed */
  }

  .underline{
    text-decoration: underline;
  }
  h3{
    font-size: 28px;
  }
  @media only screen and (max-width: 767px) {
    .container {
      height: auto; /* Adjust height for smaller screens */
      width: 90%; /* Adjust width for smaller screens */
    }
    h1 {
      font-size: 30px; /* Adjust font size for smaller screens */
    }
    p {
      font-size: 20px; /* Adjust font size for smaller screens */
    }
    h2 {
      font-size: 26px; /* Adjust font size for smaller screens */
    }
    .button {
      padding: 8px 16px; /* Adjust padding for smaller screens */
      font-size: 14px; /* Adjust font size for smaller screens */
      margin: 10px; /* Adjust margin for smaller screens */
    }
  }