*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif, ;
    box-sizing: border-box;
}
body{
    overflow: hidden; 
}
.intro{
    width: 100vw;
    height: 100vh;
    background-color: #A9BCC3;
    position: relative;
}
@keyframes hand {
    0%{opacity: 100%;}
    100%{opacity: 0%;}
}
.hand{
    position: absolute;
    top:40%;
    left:56%;
    animation: hand 1s ease forwards;
}
.string{
    position: absolute;
    top: -20%;
    left: 63%;
    animation: hand 1s ease forwards;
}