@font-face {
    font-family: 'Museo500'; /*a name to be used later*/
    src: url('https://raw.githubusercontent.com/PiquezEnriquez/Icone/refs/heads/main/Museo-500.ttf'); /*URL to font*/
}

body{
    font-family: 'Museo500';
    font-size: 18px;
    
}

.container{
    background-color: antiquewhite;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.waitText{
    font-size: 2rem;
}

.waitImg{
    width: 60%;
    margin-top: 5%;
    margin-left: 20%;
    margin-right: 20%;
}

.bread  {
  font-size: 1rem;
  color: white;
  padding-left: 10px;
  padding-top: .7rem;
}

/* 🍔 Hamburger */
#hamburger {
  /*position: fixed;
  top: 10px;
  left: 10px;*/
  background-color: gray;
  padding-right: 10px;
  font-size: 2rem;
  text-align: right;
  cursor: pointer;
  z-index: 1001;
}

/* 📱 Menu laterale */
.sideMenu {
  position:relative;
  width: 11rem;
  height: 0;
  background-color: cadetblue;
  color: white;
  padding-left: 10px;
  border-radius: 10px;
  z-index: 1002;
  display: none;
}

/* menu aperto */
.sideMenu.open {
  display: flex;
  flex-direction: column;
}

/* bottoni */
.sideMenu button {
  background: blueviolet;
  border: none;
  height: 2.3rem;
  width: 95%;
  padding: 0.425rem;
  color: white;
  text-align: left;
  font-size: 1rem;
  cursor: pointer;
}

.sideMenu button:hover {
  background: gainsboro;
}

.overHamb {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
}

/* ===== MOBILE TOUCH ===== */
@media (pointer: coarse){

    html{
        margin-top: 50rem;
        padding-left: 6rem;
        margin-left: 20%;
        margin-right: 20%;
        width: 60%;
        transform: scale(2.2);
    }
}