-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
50 lines (46 loc) · 840 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
48
49
50
@import url('https://fonts.googleapis.com/css2?family=Muli&display=swap');
* {
box-sizing: border-box;
}
body {
/* background: linear-gradient(#202020,); */
background-color: #14213d;
font-family: "Muli", sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
h1{
color: white;
font-size: 50px;
}
model-viewer{
width: 60%;
height: 60%;
border: black solid 3px;
border-radius: 22px;
background-color: #ffc300;
}
img{
position: absolute;
top: -39px;
left:260px;
width: 18%;
}
h1{
margin-top: 0px;
top: 0px;
color: rgb(255, 255, 255);
}
small{
font-size: 25px;
}
a{
margin-top: 2%;
color: rgb(255, 255, 255);
text-decoration: none;
font-weight: bold;
}