-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.css
48 lines (46 loc) · 1015 Bytes
/
home.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
.bg-img {
background-image: url("Images/pic1.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 100vh;
display: flex;
flex-direction: column;
/* margin-bottom: 2rem; */
}
.home {
display: flex;
flex-grow: 1;
flex-direction: column;
justify-content: center;
align-items: center;
}
.home .main-logo {
align-self: center;
transform: translateY(10%);
}
.home .btn {
background: azure;
color: rgb(136, 103, 53);
border: 2px solid azure;
width: 10rem;
height: 3rem;
cursor: pointer;
font-size: 1.3rem;
border-radius: 7px;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
text-transform: uppercase;
font-weight: 700;
letter-spacing: 2px;
transition: all 0.3s linear;
transform: translateY(200%);
}
.home a {
text-decoration: none;
}
.home .btn:hover {
border: 2px solid #8f2626;
background-color: #8f2626;
color: azure;
}