* {
    margin: 0;
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }

header {
    background: #03273c;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
  }

.subtitle {
    display: flex;
    justify-self: center;
    font-size: 30px;
    margin-top: 10px;
    text-align: center;
    color: #ffffff;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

footer {
    background: #03273c;
    color: #ffffff;
    padding: 40px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

}
  
  
  .footer__title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  
  .footer__right {
    flex: 0.25;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
  
  .footer__text {
    text-align: justify;
    font-size: 13px;
    opacity: 0.7;
  }
  
  .footer__divider {
    width: 100%;
    height: 1px;
    max-height: 1px;
    background: #1c6188;
    opacity: 0.5;
    margin-top: 20px;
  }
  
  .footer__down {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    font-size: 12px;
  }

.container {
    width: 100%;
    padding: 0 20px;
  }



  .gallery {
    display: flex;
    justify-content: center;
    gap: 150px;
    margin-top: 20px;
    padding: 20px;
}

.photo-card {
    border: 4px solid #1c6188;
    border-radius: 20px;
    padding: 10px;
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #eef6fc;
    transition: transform 0.3s ease;
    flex-shrink: 0; 
}

.photo-card:hover {
    transform: scale(1.05);
}

.img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.photo-description {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

