body {
    background-color: rgb(255,255,255);
    font-family: "Playfair Display", "Inria Serif", serif;
    margin: 0;
    padding: 20px;
}

/* Banner Container */
.banner-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 60px auto auto auto;
    background: #810100;
    border-radius: 20px;
    padding:60px 40px;
    min-height: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.arrow {
    background: none;
    border: none;
    font-size: 50px;  /* thicker */
    font-weight: bold;
    cursor: pointer;
    color: #810100;   /* same as banner */
    position: absolute;  /* position relative to banner */
    top: 50%;           /* vertically centered */
    transform: translateY(-50%);
    z-index: 2;
}

.arrow.left {
    left: -60px; /* move outside banner */
}

.arrow.right {
    right: -60px; /* move outside banner */
}

.arrow:hover {
    color: #a30000; /* optional hover effect */
}


h1 {
    color: darkblue;
    text-align: center;
}

p {
    font-size: 18px;
}
