*{
    margin:0;
    padding:0;
}
body{
    overflow:hidden;
}
.banner{
    height:100vh;
    width: 100vw;
    min-height:fit-content;
    display:flex;
    justify-content: center;
    align-items: center;
    background-image: url("https://cdn.pixabay.com/photo/2024/02/04/11/17/ai-generated-8551938_1280.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    animation: zoom 4s ease-in-out 1 forwards;
}
@keyframes zoom {
    0%{
        scale: 1;
    }
    100%{
        scale: 1.5;
    }
}
@media screen and (max-width:450px) {
    svg path{
        width: 360px;
        height: 360px;
    }
}
svg path{
    fill: transparent;
    stroke: #fff;
    stroke-width: 3;
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    animation: textAnimation 4s ease-in-out 1 forwards;
}
@keyframes textAnimation {
    0%{
        stroke-dashoffset: 1500;
    }
    80%{
        fill: transparent;
    }
    100%{
        fill: #fff;
        stroke-dashoffset: 0;
    }
}
a{
    text-decoration: none;
}
.btn{
    width:15vw;
    height: 7vh;
    background-color: red;
    color: blue;
    font-weight: 700;
    font-size: 2rem;
    border-radius: 10px;
    box-shadow: 0px 4px 4px 6px purple;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
#forward{
    text-decoration: none;
    font-size: 2rem;
}
.btn:hover{
    background-image: linear-gradient(to right,red,yellow);
    color:black;
}