@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: purple;
    background-image:linear-gradient(to bottom right,rgb(78, 78, 243),rgb(179, 37, 179)) ;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}

.logo {
    font-size:80px;
    letter-spacing: 10px;
    border-right: 5px solid;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 2.5s steps(11),cursor .4s step-end infinite alternate;
}
@keyframes cursor {
    50%{border-color: transparent;  }
}
@keyframes typing {
    from { width: 0}
}
@media(max-width:768px){
.logo{font-size: 40px;}
}