* {
    margin:0;
    padding:0;
    border:0;
}
body {
    background: #000;
    font-family: sans-serif;
    position: relative;
    width: 100%;
    height: 100vh;
}
#ct {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}
.ct-aLoadingScreen {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #446adb;
    background: #EEEBE1;
    color: #ffffff;
    color: #000000;
    z-index: 2;
}
.ct-aLoadingProgress {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-style: italic;
    padding: 1rem 2rem;
    text-align: center;
}
.ct-aLoadingBar {
    content: '';
    height: 0.2rem;
    border-radius: 1rem;
    position: absolute;
    background: #446adb;
    background: #000000;
    left: 0;
    bottom: 0;
    transition: 1s cubic-bezier(0.31, 0.59, 0.29, 1) width;
}
.ct-aMadeWithImage {
    margin-bottom: 1rem;
}
.ct-aMadeWithImage svg {
    width: 33vw;
    height: auto;
}
.ct-aLoadingScreen.hidden {
    visibility: hidden;
    display: none;
}









#tute-video {
  position: relative;
  top: 50%;
  left: 50%;
  margin-left: -30vw;
  margin-top: -24vw;
}

#rosati {
  top: 50%;
  left: 50%;
  margin-left: -10vw;
  margin-top: -6vw;
  width: 20vw;
  height: 20vw;
  overflow: hidden;
  position: relative;
  border: 5px solid black;
  box-shadow: 6px 6px 9px #777;
}

#rosati img {
  animation: move 20s linear forwards; /* no alternate infinite */
  background-image: url(rosati.jpg);
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
}

@-webkit-keyframes move {
  0% {
    transform-origin: center;
    transform: scale(1.02);
  }
  80% {
    transform: scale(1.6);
  }
  100% {
    transform: scale(1.6);
  }
}
