Vai al contenuto
#intro {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: linear-gradient(135deg, #000000, #1a1a1a);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
animation: fadeOut 1.5s ease forwards;
animation-delay: 3s;
}
.logo {
font-size: 3rem;
color: #00f7ff;
letter-spacing: 5px;
animation: zoom 2s ease;
}
/* ANIMAZIONI */
@keyframes zoom {
0% {
transform: scale(0.5);
opacity: 0;
}
100% {
transform: scale(1);
opacity: 1;
}
}
@keyframes fadeOut {
to {
opacity: 0;
visibility: hidden;
}
}