  .background {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1266ab;
  }

  .wrap_header {
    display: table;
    max-width: 600px;

  }

  .child {
    display: flex;
    justify-content: center;
  }

  .country {
    width: 100px;
    display: table-cell;
  }

  .country p {
    display: table-cell;
    color: white;
  }

  .logo-image {
    width: 350px; 
    height: 100px; 
    object-fit: cover;
    object-position: 25% 50%; 
  }

  .country-info {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding-top: 20px;
  }

  .country-info:hover {
    transform: translate(0px, -10px);
    transition: 0.1s;
  }

  .country-info p {
    font-size: 12px;
  }

  @media screen and (max-width: 530px) {
    .logo-image {
        width: 250px; 
        height: 100px; 
        object-fit: cover;
        object-position: 50% 50%; 
    }
  }


