-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
33 lines (29 loc) · 828 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
body {
background-color: #1a1a1a; /* Darker background color for better contrast */
animation: fadeout 3s;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
position: relative;
z-index: 2;
color: #ffffff; /* Set text color to white for better readability */
}
img {
display: inline-block;
max-width: 100%; /* Ensure images don't exceed their container width */
}
@keyframes fadeout {
0% { opacity: 1; }
100% { opacity: 0; }
}
.brlarge {
display: block;
margin-bottom: 2em;
}
nav {
background-color: #ffa500; /* Use a consistent color notation for the background */
padding: 1em; /* Add padding for a better visual appearance */
border-radius: 5px; /* Add rounded corners to the navigation bar */
}