body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #ffffff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #a67c52;
    color: #fff;
    padding: 20px 40px;
    height: auto;
}

header .logo {
    text-align: left;
}

header h1 {
    font-size: 33px;
    margin: 0;
    font-weight: bold;
}

header p {
    font-size: 16px; 
    margin: 5px 0 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s;
    padding: 5px 10px;
}

nav ul li a:hover {
    color: #000;
    background-color: #ffffff;
    border-radius: 5px;
}

main {
    display: flex;
    justify-content: space-between;
    gap: 20px; 
    padding: 20px;
}


#quotes {
    flex: 3; 
    display: flex;
    flex-direction: column; 
    gap: 20px; 
}


.quote {
    background-color: #ffffff;
    color: #333;
    border: 2px solid #a67c52;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative; 
    text-align: center; 
}

.quote p:first-child {
    margin-bottom: 20px;
    font-size: 14px;
}


.quote p:last-child {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    font-size: 14px;
    margin-top: 10px;
    color: #a67c52;
}


.quote p:last-child strong {
    font-weight: bold;
    color: #333; 
}


.quote p:last-child em {
    font-style: italic;
    text-align: right; 
    margin-left: auto;
}


.explore-genre {
    flex: 1; 
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    height: fit-content; 
    text-align: center;
}

.explore-genre h2 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #a67c52;
    font-weight: bold;
    border-bottom: 1px solid #a67c52; 
    padding-bottom: 10px;
}

.explore-genre nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column; 
    gap: 10px; 
}

.explore-genre nav ul li {
    width: 100%;
}

.explore-genre nav ul li button {
    background-color: #ffffff;
    border: 2px solid #a67c52;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    color: #a67c52;
    cursor: pointer;
    padding: 10px;
    transition: background-color 0.3s, color 0.3s;
    width: 100%;
    text-align: center; 
    
}

.explore-genre nav ul li button:hover {
    background-color: #a67c52;
    color: #ffffff;
}

footer {
  background-color: #a67c52;
  height: 200px;
  padding: 20px;
  width: 100%;
  color: #ffffff;
}


.contact{
  background-color: rgb(193, 171, 143);
  display: inline-block;
  width: 400px;
  padding-left: 50px;
  margin-top: 15px;
  margin-left: 20px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.30);
  border-radius: 10px;
}
