-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
65 lines (64 loc) · 1.26 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
*{
margin: 0;
padding: 0%;
box-sizing: border-box;
overflow: hidden;
}
body{
height: 100vh;
width: 100vw;
background-image: url(pexels-maxyne-barcel-10402282\ 1.png);
background-repeat: no-repeat;
background-size: cover;
display: flex;
flex-direction: column;
justify-content: space-between;
}
header{
display: flex;
justify-content: space-between;
align-items: center;
}
nav ul{
display: flex;
gap: 20px;
}
nav ul li a{
text-decoration: none;
color: rgb(205, 181, 28);
font-size:larger;
font-weight: 700;
}
nav ul li a:hover{
text-decoration: underline;
font-size: 20px;
color: rgb(141, 128, 42);
}
section{
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
font-size: 30px;
color: rgb(150, 134, 32);
}
footer{
display: flex;
justify-content: flex-end;
}
button{
background-color: rgb(142, 53, 53);
border: 2px solid rgb(200, 79, 79);
border-radius: 5px;
padding: 5px 15px;
margin-right: 4vh;
color: white;
}
button:hover{
background-color: white;
color:rgb(142, 53, 53);
cursor: pointer;
}
footer img{
height: 20vh;
}