Newer
Older
.parent {
animation: fadeInAnimation ease 0.5s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.parent {
display: flex;
align-items: center;
height: 80vh;
}
.parent .row {
align-items: center;
}
.parent h1 {
margin: 0;
padding-bottom: 1.5vw;
}
@media screen and (max-width: 400px) {
h3 {
margin-top: 2rem;
}
}