body{
    background-color: rgb(248, 228, 212);

    height: 100%;
    margin: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing{
    margin-top: 15vh;
    text-align: center;    
}

h1{
    font-family: 'Cinzel Decorative', cursive;
    font-size: 75px;
    color: rgb(163 74 33);
    letter-spacing: 5vh;
}
 
p{
    color: rgb(163 74 33);
    font-size: 18px;
}

h2{
    font-family: 'Lora', serif;
    font-size: 30px;
    color: rgb(163 74 33);
    text-align: center;
}

.fade-in {
    opacity: 0;
    visibility: hidden;
    transition: opacity 3s ease-in-out;
}
  
.fade-in.active {
    opacity: 1;
    visibility: visible;
}

nav {
    margin-top: 5vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.logo-image {
    width: 70px;
    height: auto;
    margin-right: 10px; 
}

.nav-links li {
    font-size: 20px;
    font-family: 'Lora', serif;
}

.nav-links li:last-child {
    margin-left: auto;
}

.nav-links li a {
    display: block;
    padding: 8px;
    color: rgb(163, 74, 33);
    text-decoration: none;
}

a:hover{
    cursor: pointer;
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
  
.fade-up.fade-up-active {
    opacity: 1;
    transform: translateY(0);
}


h3{
    color: rgb(163, 74, 33);
    text-align: center;
    font-family: 'Raleway', sans-serif;
}

.about{
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    font-size:20px;
    color: black;
}

.slideshow {
    position: relative;
}
  
.slides {
    display: flex;
}
  
.slides img {
    width: 800px; 
    height: 800px; 
    object-fit: cover; 
}
  
.prev,
.next {
    position: absolute;
    top: 50%;
    font-size: 30px;
    font-weight: bold;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.5);
}
  
.prev {
    left: 10px;
}
  
.next {
    right: 10px;
}
  
button {
    padding: 10px 20px;
    background-color: rgb(163, 74, 33);
    color: rgb(248, 228, 212);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Lora', serif;
}
  
button:hover {
    background-color: rgb(223, 172, 148);
}

.button-container {
    display: flex;
    justify-content: center;
}
  
.button-container button {
    margin-right: 10px; 
}

.issues-cover a img{
    height: 500px;
    width: 350px;
    margin-right: 10px;
    margin-bottom: 10px;
}

#searchInput{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
}
