/* General page style */
body {
  background-color: #001f5c; /* EU blue */
  color: yellow;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  text-align: center;
}

/* Flag */
.flag-container img {
  width: 300px;
  margin-top: 20px;
}

/* Title */
h1 {
  font-size: 1.8em;
  margin: 15px 0;
  color: yellow;
}

/* Layout: founder left, buttons center */
.main-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 20px;
  gap: 50px;
}

/* Founder styling */
.founder {
  text-align: center;
  color: yellow;
}

.founder img {
  width: 120px;
  border-radius: 10px;
  margin-top: 10px;
}

/* Buttons styling */
.button-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nav-button {
  display: block;
  padding: 15px 25px;
  background-color: gold;
  color: #003399;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;
}

.nav-button:hover {
  background-color: orange;
  color: white;
}