.yo{
    background-image: url(../img/69.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: aliceblue;
    height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.yo img{
    width: 10%;
    border-radius: 1000px;
    box-shadow: 10px 10px 100px gray;
}
.yo h1{
    margin-top: 5%;
}
.yo h3{
    display: block;
    white-space: nowrap;
    border-right: 2px solid;
    width: 15ch;
    font-weight: 200;
    animation: typing 2s steps(10),blink .5s infinite step-end alternate;
    overflow: hidden;
    font-style: italic;
}
@keyframes typing {
    from{width: 0;}
    
}
@keyframes blink {
    50% {
        border-color: transparent;
    }
}
.yo p{
    padding:25px;
    text-align: center;
    width: 25%;
    font-size: 20px;
    font-weight: lighter;
}