@font-face {
  font-family: ButlerLight;
  src: url(Butler_Light.otf);
}

/* Reset di base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    color:#ffc100ff;
    font-size: 4vmin;
    text-align: center;
    border: none;
    border-radius: 1vmin;
    font-family: 'ButlerLight';
    user-select: none; /*abilitare solo per gli elementi che si accetta che vengano copiati*/
}

/* Stili generali */
body {
  line-height: 2;
  color: #ffc107ff;
  background-color: #333;
}

#hiddenDiv{
  background-color: #ffffff00;
  width: 100%;
}

/* Navbar */
.navbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #333333DD;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1;
  border-top-left-radius: 0%;
  border-top-right-radius: 0%;
}

hr{
  width: 100%;
  border: none;
  margin: auto; 
  height: 0.1px;
  background-color: #ffc100ff;
}

button{
  padding: 10px;
  background-color: #00000000;
  border: 0.1px solid #ffffffDD;
}

button:hover{
  color: #ffffff;
}
  
.head-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.03);
  width:100%;
  padding: 5vmin;
  text-decoration: none;
  transition: color 0.3s;
}
  
#YYS {
  font-size: 10vmin;
  min-width:80%;
  transition: color 0.3s;
  margin: auto;
  /* font-weight: bold; */
}
#YYS:hover{
  color: #ffffffff;
}



.nav-links {
  font-size: 3vmin;
  list-style: none;
  display: flex;
}

.nav-links li {
  justify-content: left;
  margin-left: .8em;
}

.nav-links a {
  text-decoration: none;
  color: #ffc100ff;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffffff;
}

/* head Section */
.head {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.head h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

#content p {
  /* font-size: 3vmin; */
  margin-bottom: 20px;
}



.peaceImg{
  width: 10%;
}
#logoIndex{
  width: 15%;
}
#video{
  display:flex;
}

#prima{
  display: center;
  width:100%;
}

.menu-toggle{
  display: none;
}

/* PORTRAIT */
@media (max-aspect-ratio: 1.5/1) { 
  *{
    font-size: 5vmin;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 0.1px solid #ffffff55;
    width: 100%;
    display: none; /* inizialmente nascosta */
  }

  .nav-links.show {
    display: block;
  }
  
  .nav-links li {
    justify-content: left;
    margin-left: 0px;
  }

  .head-content {
      display:flex;
      flex-direction: column;
      width:80%;
  }

  .menu-toggle{
    display: inline;
    border: none;
  }

}