@font-face {
    font-family: 'Acumin';
    src: url('/static/fonts/Acumin-Pro-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Acumin';
    src: url('/static/fonts/Acumin-Pro.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


html, body {
  padding: 0;
  margin: 0;
  background-color: #f2f2f2;
  text-shadow: 0 0 0 transparent; /* Set shadow color to transparent */
  text-rendering: optimizeLegibility;
  -webkit-text-rendering: optimizeLegibility; /* For WebKit browsers like Chrome and Safari */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  font-family: 'Acumin';
  font-weight: 300; /* Light */
  letter-spacing: 0.04em;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  display: none;
}

body b, body i {
  font-weight: normal;
  font-style: normal;
}

a {
    text-decoration: none;
    cursor: pointer;
}

a:visited {
    text-decoration: none;
}

.EN, .PT, .IT {
    display: none;
}

.header {
  position: fixed;
  top:0;
  left: 0;
  width: 100vw;
  height: 80px;
  background-color: #f2f2f2;
  z-index: 2;
}

.titlename {
  position: fixed;
  top: 30px;
  left: 50px;
  width: calc(100vw - 80px);
  height: 20px;
  font-size: 16px;
  z-index: 3;
  background-color: #f2f2f2;
}

.titlename div {
  margin-top: 0;
  display: inline-block;
  margin-right: 60px;
  opacity: 0.2;
}

.titlename  {transition: opacity 1.2s ease;}

.titlename div:hover {
  opacity: 1;
  cursor: pointer;
}

.titlename.hidden {
  opacity: 0;
}
