.azzardo-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.titolo-azzardo{
    font-size: 14vw;
	line-height: 0.8em;
	font-weight: 700;
    margin-bottom: 5%;
    color: rgba(0, 255, 0, 0.95);
    z-index: 1;
    text-align: center;
}

.azzardo-container img{
    z-index: 0;
    height:100%;
    position: absolute;
    animation: rotation 60s infinite linear;
    -webkit-animation: rotation 60s infinite linear;
}

@keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
  }

