*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Montserrat, sans-serif;
    background-color: #141414;
    color: white;
    line-height: 1.6;
}

h1 {
    text-align: left;
    font-size: 2.5rem;
    margin-top: 50px;
    color: #fff;
    font-weight: 700;
    padding-inline: 2rem;
}

.Pictures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1rem;
    max-width: 1500px;
    margin: 20px auto;
    margin-top: 100px;
}

.Pictures img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Pictures img:hover {
    transform: scale(2);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.8);
}

@media (max-width: 1499px) {
    .Pictures {
        max-width: 656px;
    }
}

@media (max-width: 640px) {
    .Pictures {
        max-width: 100%;
        margin-inline: 16px;
    }
    .Pictures img:hover {
        transform: none;
    }
}

.footer {
    background-color: #003463;
    color: white;
    text-align: center;
    padding: 15px 0;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
}

.footer-container {
    display: flex;
    justify-content: center;
    gap: 100px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.footer-link:hover {
    color: #d1d1d1;
}

@media (max-width: 1320px)

.footer-container {
    display: flex;
    justify-content: center;
    gap: 100px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #d1d1d1;
}

.back-button-container {
    display: flex;
    justify-content: center;
    margin-bottom: 190px;
}

.back-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #003463;
    border-radius: 50%;
    text-decoration: none;
    position: relative;
    margin-top: 100px;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 25px solid white;
    transform: rotate(-90deg);
    translate: -2px;
}

.back-button:hover .circle {
    background-color: #002244;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.back-button:hover .triangle {
    border-bottom-color: #d1d1d1;
}

.dock {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 300px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}
  
.dock-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: rgba(159, 159, 159, 0.3);
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
}
  
.dock-button img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }
  
.dock-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.6);
}
  
  @media (max-width: 1320px) {
    .dock {
      width: 260px;
      height: 50px;
    }
  
    .dock-button {
      width: 40px;
      height: 40px;
    }
  
    .dock-button img {
      width: 20px;
      height: 20px;
    }
  }