*{
    border: none;
    margin: 0%;
}

body{
    height: 100vh;
    width: 100vw;
    place-items: center;
    align-content: center;
}

.outer-div{
    height: 20%;
    width: 100%;
}

img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.outer-div-anim{
    margin: 2rem 0rem;
    height: 100%;
    width: fit-content;
    gap: 1%;
    animation: shrink 2s forwards;

}

.anim-img-div{
    height: 80%;
    width: 100%;
    text-align: center;
}

.anim-text-div{
    place-content: center;
}

p{
    text-align: center;
    padding: 1.5rem;
}

h1{
    font-family: Arial, Helvetica, sans-serif;
    text-wrap-mode: nowrap;
    width: 0%;
    overflow: hidden;
    padding: .75rem 0rem;
    text-align: center;
    font-size: 30px;
    color: #00b7cb;
    /* animation: expand 2s forwards; */
}

@keyframes shrink{
    0%{height: 95%;}
    100%{height: 50%;}
}

@keyframes expand{
    0%{width: 0%;}
    100%{width: 100%;}
}