/* This is a comment */

/* index.html */

body, html {
    margin: 0;
    padding: 0;
    font-family: Arial;
 font-size: 20px;
  color: #ffffff;
}

.center {
  margin: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  }

.menu-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

#myVideo {
 position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
}

.Btn {
  display: block;
  position: fixed;
  bottom: 1px;
  width: 80px;
  border: 1px solid #fff;
  outline: none;
  background-color: rgba(0,0,0,0.1);
  font-size: 15px;
  color: white;
  cursor: pointer;
  padding: 8px;
}

a:link, a:visited {
  color: white;
text-decoration: none;
 }

a:hover, a:active {
 color: white;
text-decoration: underline;
}


/* visita virtuale.html */

#frame-wrap {
    background: #000;
    width: 100%;
    height: 100vh;
}

#frame {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}



