-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (85 loc) · 1.34 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
*{
padding: 0;
margin: 0;
}
body{
background-color: #002B5B;
}
h1{
font-family: open sans;
font-weight: 700;
color: #8FE3CF;
text-align: center;
font-size: 3em;
margin-top: 10vh;
}
strong{
color: #54BAB9;
}
h2{
font-family: open sans;
color:#EAE3D2;
text-align: center;
font-weight: normal;
font-size: 17px;
margin-top: 5vh;
margin-left: 25%;
margin-right: 25%;
}
h3{
font-family: open sans;
font-size: 15px;
font-weight: normal;
color: #fff;
margin: auto;
text-align: center;
margin-top: 5vh;
padding: 30px;
border-radius: 5px;
width: 50%;
}
.btn{
height: auto;
width: 120px;
margin: auto;
border: 0px solid red;
margin-top: 5vh;
}
button{
padding: 10px;
background-color: #CA4E79;
color: #fff;
font-family: open sans;
font-size: 18px;
border-radius: 20px;
border: none;
outline: none;
margin: auto;
width: 120px;
cursor: pointer;
}
button:hover {
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}
.main{
height: auto;
width: 80%;
margin: auto;
border: 0px solid red;
align-items: center;
justify-content: center;
display: block;
}
@media screen and (max-width: 600px){
h1{
font-size: 1.5em;
}
h2{
font-size: 15px;
margin-left: 5%;
margin-right: 5%;
}
h3{
width: 80%;
}
}