       /* Reset CSS */
       * {
           box-sizing: border-box;
           margin: 0;
           padding: 0;
       }

       /* Global Styles */
       body {
           font-family: 'Lato', sans-serif;
           background-color: #5e5f61;
           display: flex;
           align-items: center;
           justify-content: center;
       }

       .container {
           max-width: 600px;
           margin: 0 auto;
           padding: 4rem;
           border-radius: 8px;
           background-color: #fff;
           box-shadow: 0 4px 10px rgba(106, 195, 207, 0.493);
           position: absolute;
           top: 50%;
           left: 50%;
           transform: translate(-50%, -50%);
       }

       .title {
           margin-bottom: 1rem;
           font-size: 2.5rem;
           font-weight: 550;
           color: #031b22;
           text-align: center;
       }


       #fileLinkInput {
           padding: 15px;
           border: 1px solid #a0e4e9;
           border-radius: 5px;
           width: 100%;
           font-size: 18px;
           transition: border-color 0.3s ease;
       }

       #fileLinkInput:focus {
           border-color: #4CAF50;
           outline: none;
       }

       #downloadBtn {
           display: block;
           width: 100%;
           padding: 15px;
           background-color: #44adb4;
           color: white;
           border: none;
           border-radius: 5px;
           cursor: pointer;
           font-size: 16px;
           font-weight: bold;
           transition: background-color 0.3s ease, transform 0.3s ease;
       }

       #downloadBtn:hover {
           background-color: #45a049;
           transform: translateY(-3px);
       }

       #downloadBtn:active {
           transform: translateY(1px);
           background-color: #3e9e43;
       }

       .img-t {
        text-align: center;
        position: relative;
        top: 8px;
       }