-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
45 lines (44 loc) · 846 Bytes
/
style.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
*{
font-family:'Courier New', Courier, monospace;
margin: 0px;
padding: 0px;
box-sizing: border-box;
color: var(--txt);
}
body{
display: flex;
justify-content: space-evenly;
}
.picture{
background-image: url(assets/honza-reznik-lScQonfzQ1s-unsplash.jpg);
background-position: center;
background-size: auto;
background-repeat: no-repeat;
width:100vw;
height: 100vh;
}
.logo{
height:auto;
position: relative;
top:20vw;
gap:1vh;
display: flex;
justify-content: center;
align-items: center;
background-color: rgba(0,0,0,0.7);
}
.odin{
height: 15vh;
}
.section{
padding-left: 2vw;
display: flex;
flex-direction: column;
justify-content: space-evenly;
font-size: larger;
}
.above{
display: flex;
flex-direction: column;
gap:18px;
}