* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #111;
  color: #fff;
  font-family: "Stack Sans Text", sans-serif;
  font-optical-sizing: auto;
    font-display: swap;
}
/* HEADER */
.header {
  width: 100%;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  background: #222;
}

.flags {
  display: flex;
  gap: 15px;
  background: transparent;
}

.flag {
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.2s;
  background: transparent;
}

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

/* BIO */
.bio {
  max-width: 600px;
  margin: 30px auto;
  font-size: 15px;
  line-height: 22px;
  white-space: pre-line;
  color: #ddd;
  text-align: center;
  padding: 0 20px;
}
