        body {
            font-family: Arial, sans-serif;
            text-align: center;
            /*background-color: #f4f4f4;*/
            /*background-color: #262626;*/
            background-image: url('../img/fsharing.webp');
            background-repeat: no-repeat;
            background-size: cover;
            margin: 0;
            padding: 0;
        }
        .upload-container {
            width: 50%;
            margin: 190px auto;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        @media screen and (max-width:769px){
            .upload-container {
             margin: 130px auto;
           }
        }

        .drop-zone {
            border: 2px dashed #4a91e2;
            border-radius:10px;
            padding: 30px;
            cursor: pointer;
            color: #4a91e2;
            font-size:24px;
            transition: ease 0.3s;
        }
        .drop-zone:hover {
            background-color: #e0f7fa;
            transition: ease 0.3s;
        }
        .drop-zone.highlight {
            background-color: #e0f7fa;
            
        }
        .status-bar {
            margin-top: 20px;
            display: none;
        }
        .image-links {
            margin-top: 20px;
        }
        .copy-btn {
            margin-left: 10px;
            padding: 5px 10px;
            margin: 10px 10px;
            border: none;
            background-color: #4a91e2;
            color: white;
            cursor: pointer;
            border-radius: 5px;
            transition: ease 0.3s;
        }
        .copy-btn:hover {
           background-color:#2b4d7f;
           transition: ease 0.3s;
        }
        img{
            border-radius:10px;
        }
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #1e2021;
            color: black;
            font-weight: bold;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }
        .header a {
            color: white;
            text-decoration: none;
            margin: 0 40px;
            font-size: 16px;
            margin-left:0;
            transition: ease 0.3s;
        }
        .header a:hover {
            color:#4a91e2;
            transition: ease 0.3s;
        }
       .logo span:first-child {
             color: #2b4d7f;
        }

        .logo span:last-child {
        color: #4a91e2;
        }
