body {
    background-color:#f6eaf2;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    line-height: 1.6;
    }

h1 {
    margin: 3%;}

nav ul {
    display: flex;
    list-style: none;
    justify-content: space-evenly;
    align-items: center;
    padding: 0;
    margin: 0;
    background-color: #fcf7c4;
    }
    
nav ul a {text-decoration: none;
         font-size: 15px;
         font-family: 'Courier New', Courier, monospace;
         background-color: #EDBB99 ;
         color: rgb(2, 27, 76);
         border-radius: 6px;}    
nav ul a:hover {
        font-size: 20px;
        background-color: #cd8383;
        transition: 0.5s ease;
    }
.home-image{display: block;
    width: 40%;
    height: auto;
    margin: 40px auto ;
    border: 4px solid #EDBB99;
    border-radius: 3%;
    }

    .calendar-container {
        display: flex;
        flex-direction:column;
        align-items: center;
        margin: 20px;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 15px;
    }

    .image-section img {
        width: 100%;
        height: 50vh ;
        border-bottom: 1px solid #ddd;
        border-radius: 8px;

    }

    .calendar-section {
        padding: 20px;
        width: 100%;
        text-align: center;
    }

    #calendar {
        min-height: 300px; 
        display: grid;
        grid-template-columns: repeat(7,1fr);
        background-color: #cd8383;
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 15px;
    }

    .calendar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        font-family: cursive ;
        text-decoration: underline;
        text-decoration-color:rgb(114, 18, 111);
    
    }
    #month-year {font-family: Palatino;
     }

    .day {
        padding: 10px;
        background-color: #b37781;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .prev-btn, .next-btn {
        cursor: pointer;
        background-color: inherit;
        border: none;
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 14px;
    }

    .prev-btn:hover, .next-btn:hover {
        background-color:#cd8383;
        font-size: 18px;
        transition: 0.5s ease;
    }
