-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
50 lines (48 loc) · 972 Bytes
/
style.css
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
44
45
46
47
48
49
50
.head{
display: flex;
justify-content: center;
flex-direction:column;
background-color: rgb(255, 255, 255);
width: 100%;
align-content: space-evenly;
height: 100%;
}
h1{
display:flex;
flex-direction: column;
font-size: 5vmax;
text-align:center;
justify-content: center;
background-color: rgb(184, 235, 235);
text-shadow:0.cqmax;
color: crimson;
padding: 10px;
border: 20px;
}
p{
text-shadow: 0cqmax;
font-size: x-large;
flex-wrap: wrap;
text-align: justify;
color: rgb(2, 3, 1);
}
.body{
display: flex;
background-color: brown;
height: 200px;
width: 200px;
animation-fill-mode: backwards;
}
@media (max-width:800px) {
.body{
background-color: royalblue;
border-radius: 50%;
}
}
.nav{
background-color:beige;
color: rgb(0, 0, 0);
display: flex;
align-items: left;
justify-content: space-evenly;
}