@font-face {
  font-family: 'Baron Neue Bold';
  src: url('fonts/BaronNeueBold.otf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap; /* auto, block, swap, fallback, optional */
}

@import url('https://fonts.googleapis.com/css2?family=Exo+2&display=swap');

* {
  box-sizing: border-box;
  overflow-x: hidden;
}

:root {
  --font-size: 1.4rem;
  --margin: 1rem;
  --orange: #ff3300;
  --brown: #330a00;
}

body {
  background-color: white;
  margin: 1rem;
  background: linear-gradient(180deg, #cbc4ac 0%, #efede5 100%);
  height: 100vh;
}

h1 {
  font-family: 'Baron Neue Bold';
  font-size: var(--font-size);
  letter-spacing: 0.05rem;
  color: var(--orange);
}

p {
  text-align: justify;
}

.projects_item {
  font-size: var(--font-size);
}

#content,
#main {
  display: flex;
  align-items: center;
  flex-flow: column;
}

#flags {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-around;
  height: 80vh;
}

audio {
  filter: sepia(100%) saturate(70%) grayscale(1) contrast(99%) invert(12%);
  margin-top: 2rem;
  width: 100%;
  border-radius: 10px;
}

.player_text {
  font-family: 'Exo 2', sans-serif;
  color: var(--brown);
  font-style: Regular;
  font-size: 1.4rem;
  text-align: left;
  line-height: 2rem;
  z-index: 10;
}

.title_bar {
  width: 100%;
  height: 30px;
}

.title {
  margin: 0px;
  top: var(--margin);
  width: 100%;
  text-align: center;
}

.back_button {
  z-index: 10;
  position: absolute;
  left: var(--margin);
  top: var(--margin);
  width: 30px;
  height: 30px;
}

.bottom_img {
  position: fixed;
  width: 100vw;
  height: 15vh;
  left: 0;
  bottom: 0;
  margin: auto;
}
