.centered-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
}

.flag-container {
  display: flex;
  gap: 240px;
}

@media (max-width: 768px) {
  .flag-container {
    flex-direction: column;
    align-items: center;
    /*Optional: Centers flags horizontally;*/
    display: flex;
    gap: 30px;
    padding-bottom: 10px;
  }
}

.flag {
  cursor: pointer;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.flag:hover {
  transform: scale(1.1);
}

.dutch-flag {
  background: url('../../assets/img/dutch-flag-big.png');
  background-size: cover;
  width: 360px;
  height: 240px;
}

.uk-flag {
  background: url('../../assets/img/uk-flag-big.png');
  background-size: cover;
  width: 360px;
  height: 240px;
}

@media (max-width: 768px) {
  .dutch-flag, .uk-flag {
    width: 300px;
    height: 200px;
  }
}