*{
    box-sizing:border-box;
}

body{
    margin: 0px;
    padding: 0px;
    font-size:18px;
    padding-bottom: env(safe-area-inset-bottom);
}

.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: 35px;
}

.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: #0000BB;
    font-weight:bold;
    transition: color 0.2s ease;
}

a:hover {
    color: #6666FF;
    font-weight:bold;
}

a img{
    width:50px;
    vertical-align: middle;
} 

a:hover img {
  opacity: 0.5;            /* make it dim */
  transition: all 0.3s ease; /* smooth effect */
}

@media (max-width: 768px) {

}

.copyright{
text-align: center;
padding-top: 20px;
}

