-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
64 lines (61 loc) · 1.07 KB
/
styles.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
*{
padding:0px;
margin: 0px;
text-align: center;
}
h1 {
height:3.5rem;
background-color: #332e3c;
color: aquamarine;
align-items: center;
justify-content: center;
display: flex;
}
body{
background-color:white;
}
.choice:hover{
opacity: 0.6;
cursor: pointer;
background-color: black;
}
.choice{
width: 200px;
height: 200px;
border-radius: 50%;
justify-content: center;
align-items: center;
display: flex;
}
img{
height: 175px;
width: 175px;
object-fit: cover;
border-radius: 50%;
}
.choices{
display: flex;
justify-content: center;
margin-top: 100px;
gap: 3rem;
align-items: center;
}
.score-board{
display: flex;
justify-content: center;
align-items: center;
font-size: 2rem;
gap: 7rem;
margin-top: 3rem;
}
.msg-container {
margin-top: 5rem;
}
#msg {
font-size: 2rem;
background-color: black;
padding: 1rem;
display: inline;
color: white;
border-radius: 1rem;
}