Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
.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;
.row{
align-items: center;
}
h1{
margin: 0;
padding-bottom: 1.5vw;
}
}
@media screen and (max-width: 400px) {
h3{
margin-top: 2rem;
}
}
@media screen and (max-height: 400px) {
.parent{
display: grid;
img{
display: none;
}
}
}