body {
margin: 0;
padding: 0;
}

.container {
width: 100%;
border: 1px solid #000;
box-sizing: border-box;
}

img {
width: 100%;
}

.text {
display: flex;
justify-content: center;
align-items: center;
position: absolute;
left: 0;
top: 0;
width: 100%;
}

svg {
width: 100%;
box-sizing: border-box;
transform: scale(.5);
animation-name: animation;
animation-duration: 1s;
animation-fill-mode: forwards;
}

@keyframes animation {
from {transform: scale(.5);}
to {transform: scale(1);}
}
