-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
47 lines (41 loc) · 803 Bytes
/
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
html {
scroll-behavior: smooth;
}
body {
margin: 0;
font-family: 'Poppins';
background: url(./resources/images/ai_generated.jpeg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
color: white;
}
/* content */
.container {
height: auto;
width: auto;
margin: 7.5% 24%;
padding: 32px 32px;
border-radius: 50px;
backdrop-filter: blur(10px);
background-color:rgba(64, 64, 64, 0.2);
}
.top-bar {
margin: 2px;
display: flex;
}
.name-container h1 {
font-size: 3em;
font-weight: bold;
}
.img-container img {
height: 320px;
width: 320px;
text-align: left;
margin: 5% 5%;
border-radius: 100%;
}
.name-container {
margin: 10px 40px;
}