body {background: linear-gradient( to bottom, rgba(204, 94, 199, 0.822) , rgb(80, 16, 74), rgb(209, 96, 149)  );

    background-repeat: no-repeat;
    background-attachment:fixed;

 }

             
 h1{ color: azure;
        font-family: Georgia, 'Times New Roman', Times, sans-serif;
        font-size: 24px;
        font-weight: 400;
        font-style: italic;
        


 }


 h2{

    color: azure;
        font-family: Georgia, 'Times New Roman', Times, sans-serif;
        font-size: 24px;
        font-weight: 400;
        font-style: italic;
        
 }


    body {
        font-family: Arial, sans-serif;
        text-align: center;
        background-color: #f0f0f0;
        padding: 20px;
    }
    
    h1 {
        color: #333;
        margin-bottom: 30px;
    }
    
    .slideshow-container {
        max-height: 600px;
        max-width: 500px;
        position: relative;
        margin: 0 auto;
        background: white;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        overflow: hidden;
    }
    
    .slide {
        display: none;
        animation: fade 1s ease-in-out;
    }
    
    .slide:first-child {
        display: block;
    }
    
    .slide img {
        width: 100%;
        height: 100%;
       object-fit:cover;

    }
    
    .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: 50px;
        height: 50px;
        margin-top: -25px;
        color: white;
        font-size: 24px;
        font-weight: bold;
        background-color: rgba(0,0,0,0.5);
        border: none;
        border-radius: 55%;
        transition: 0.3s;
    }
    
    .next {
        right: 24px;
    }
    
    .prev {
        left: 24px;
    }
    
    .prev:hover, .next:hover {
        background-color: rgba(0,0,0,0.8);
        transform: scale(1.1);
    }
    
    .dots-container {
        text-align: center;
        padding: 20px;
        background: white;
    }
    
    .dot {
        cursor: pointer;
        height: 15px;
        width: 15px;
        margin: 0 5px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: 0.3s;
    }
    
    .dot.active, .dot:hover {
        background-color: #717171;
        transform: scale(1.2);
    }
    
    @keyframes fade {
        from { opacity: 0.4; }
        to { opacity: 1; }
    }
