html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

h1, h2, h3, h4, h5 {
  margin: 0.5rem 0;
	font-weight: 600;
}

a {
	color: black;
	font-weight: 600;
}

a:hover {
	color: blue;
	text-decoration: none;
}

address {
	font-style: normal;
}

ul {
	margin: 0;
}

@media print {
	.no-print {
		display: none;
	}

  a {
    text-decoration: none;
  }
}

header {
	position: fixed;
	top: 2%;
	right: 2%;
  gap: 1rem;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

header > .languageSwitch {
  gap: 0.5rem;
	display: flex;
	align-items: center;
}

header > .languageSwitch label {
  font-weight: bold;
}

header > .languageSwitch select {
  padding: 0.3rem;
  font-size: 1rem;
}

header > .languageSwitch > a > picture {
	display: flex;
	align-items: center;
}

header > .resume-toggle {
  position: absolute;
  top: 0;
  right: 0;
}

header > .toggle-button {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  background-color: #e0e0e0;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: background-color 0.2s;
}

header > .toggle-button:hover {
  background-color: #d0d0d0;
}

section.no-break {
	break-inside: avoid;
}
