-
Notifications
You must be signed in to change notification settings - Fork 0
/
css.css
54 lines (46 loc) · 825 Bytes
/
css.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
body {
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-position: center center;
background-image: url('background.jpg');
height:100vh;
color: #f9fafc;
font-family: 'Quantico', sans-serif;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height:100%;
}
#name {
/* padding-top: 4em; */
font-size: 3em;
}
#headline {
font-size: 1.5rem;
}
#about {
align-items: center;
justify-content: center;
width: 40%;
text-align: center;
/* padding-top: 2em; */
}
@media screen and (max-width: 700px) {
#about {
width: 100%;
}
}
.button {
padding: 5px;
color: #f9fafc
}
.button:hover {
color: #2098d1
}
#contact {
padding: 1em;
}