body{
    margin: 0px;
    padding: 0px;
    font-size:18px;
}

.panel1 {
    background-image: linear-gradient(to bottom, #CCCCFF , #55DDFF);
}

.panel2 {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.panel3 {
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.panelship{
    flex-basis:15%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.paneleye{
    flex-basis:85%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ship{
    width:100%;
    height: 100%;
    object-fit:contain;
}

.eye{
    width:100%;
    height: 100%;
    object-fit:contain;
}

nav {
    width: 85%;
    margin: 0 auto;
    flex: 0 0 auto;
    padding-top: 10px;
}

.menu {
  display: flex;
  justify-content: space-around;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
    color: #000088;
    transition: color 0.2s ease;
}

a:hover {
    color: #4444FF;
}

@media (max-width: 768px) {

}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    padding: 20px;
}

.gallery img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 4px rgba(0,0,0,0.4);
    transition: transform 0.5s ease;
}

.gallery img:hover {
    transform: scale(1.4);
}

.copyright{
    text-align: center;
    padding-top: 20px;
}
