.countries {
    max-width: 100%;
    background: #fff;
}
.countries_content {
    max-width: 1400px;
    margin: 0 auto;
}
.countries_content  h1 {
    text-align: center;
    font-size: 30px;
    padding: 15px 0;
    color: blue;
}
.countries_content ul  {
    display: flex;
    justify-content: space-around;
}
.countries_content ul li {
    list-style: none;
}
.countries_content ul li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    background-color: #6568ff;
   
    padding: 15px;
    border-radius: 5px;
    transition: 0.3s ease;
}
.countries_content ul li a:hover {
    box-shadow: 0px 0px 5px rgb(0, 0, 0, 0.4);
    background-color: #e9e9e9;
    color: #000000;
}

.ship {
    width: 100%;
}