* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* Navbar styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 18px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    z-index: 1000;
    width: 100vw;
    overflow-x: hidden;
  }
  
  .navbar-links {
    display: flex;
    gap: 20px;
  }
  
  .navbar a {
    color: #151515;
    text-decoration: none;
    font-size: 25px;
    font-weight: bold;
    transition: transform 0.6s ease;
  }
  
  .navbar a:hover {
    color: #007bff;
    transform: scale(0.9, 1.2);
  }

#gallery {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.draggable {
    position: absolute;
    width: auto;
    height: 150px;
    cursor: grab;
    transition: transform 0.2s;
}


/* Enlarge on double-click */
.enlarged {
    transform: scale(2);
    z-index: 10;
}

#back-link:hover {
    color: #007bff; /* Blue color on hover */
    transform: scale(0.9, 1.2); /* Width 1.2x, Height 1.7x */
}