body {
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, Arial, Helvetica, sans-serif;
            background-color: #e9e9e7;
            color: gray;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }
        a {
            color: gray;
            text-decoration: none;
            margin-left: 1rem;
        }
        a:hover {
            color: red;
        }
        .navbar {
            background-color: #e9e9e7;
            padding: 10px;
            width: 100%;
            text-align: right;
            box-sizing: border-box;
        }
        .container {
            max-width: 900px;
            margin: 20vh auto;
            padding: 20px;
            display: flex;
            gap: 10%;
        }
        .description {
            text-align: right;
            flex: 1;
        }
       .image-container {
            text-align: left;
            flex: 1;
        }
        .image-container img {
            max-width: 150px;
            border-radius: 50%;
        }
       .slider-container {
            position: fixed;
            bottom: 5px;
            left: 0;
            width: 100vw;
            height: 30vh;
            overflow: hidden;
            background: #e7e9e9f8;
            padding: 10px;
            box-sizing: border-box;
            border-radius: 3%;
        }
        .slider {
            display: flex;
            gap: 10px;
            white-space: nowrap;
            animation: scroll 20s linear infinite;
            
         }
        .slider img {
            height: 27vh;
            width: auto;
            flex-shrink: 0;
            cursor: pointer;
            border-radius: 3%;
            
        }
       
        @keyframes scroll {
            from { transform: translateX(100%); }
            to { transform: translateX(-100%); }
        }

        @media (max-width: 500px) {

            .container {
           display: block;
           margin-top: 5vh;
          }

          .description {
        text-align:center;
    
        }

          .image-container {
            text-align: center;
        }

        .image-container img {
            max-height: 100px;
         }

        .slider {
            animation: scroll 20s linear infinite;
            width: 400%;
        } 
        .slider img {
             max-height: 200px;
        }
        @keyframes scroll {
            from { transform: translateX(40%); }
            to { transform: translateX(-75%); }
        }

    }

       
        