-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
47 lines (46 loc) · 851 Bytes
/
main.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
/* background-color: rgb(33, 150, 48); */
background-color: white;
color: black;
}
.container{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.content {
background-color: rgba(240, 231, 231, 0.829);
border: 1px solid black ;
padding: 5%;
}
h1{
/* padding-left: 120px; */
text-align: center;
font-size: 4rem;
padding-top: 2rem;
padding-bottom: 2rem;
}
h2{
/* padding-left: 60px; */
text-align: center;
font-size: 3rem;
}
button {
padding:3.5px 1.2rem;
border: 2px solid black;
margin: auto 5px;
border-radius: 5px;
cursor: pointer;
background-color: white;
transition: all .3s linear;
}
button:hover{
background-color:black;
color: white;
}