-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.css
More file actions
50 lines (50 loc) · 887 Bytes
/
application.css
File metadata and controls
50 lines (50 loc) · 887 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
body {
background-repeat: no-repeat;
background-attachment: fixed;
background-color: #A9C9FF;
background-image: linear-gradient(180deg, #A9C9FF 0%, #FFBBEC 100%);
font-family: courier;
}
h1 {
color: white;
font-family: 'Bebas Neue', cursive;
text-align: center;
font-size: 80px;
}
.container {
display: flex;
justify-content: space-around;
margin-bottom: 20%;
}
section {
width: 25%;
background-color: #FAE9F7;
padding: 20px;
text-align: center;
border-radius: 2%;
}
a {
color: black;
text-decoration: none;
font-weight: bolder;
}
@media screen and (max-width:600px) {
body {
width: auto;
}
h1 {
font-size: 50px
}
.container {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 10%
}
section {
width: 70%;
margin: 20px;
padding: 50px;
}
}