File size: 967 Bytes
aa651ae
 
c0b3c6a
 
aa651ae
 
 
c0b3c6a
 
 
 
 
aa651ae
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c0b3c6a
aa651ae
 
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
.header-container {
    padding: 10px 15px; /* Padding for overall spacing */
    padding-bottom: 30px;
    background-image: linear-gradient(180deg, #000000 5%,#110e21 70%, transparent 100%);
    color: white;
    display: flex;
    justify-content: center; /* Center the content horizontally */
    width: 100dvw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
  
  .header-right {
    display: flex;
    align-items: center; /* Vertically center items */
    gap: 20px; /* Add space between logo and search button */
  }
  
  .header-logo-container {
    display: flex;
    align-items: center; /* Vertically center logo and title */
    gap: 10px; /* Space between logo and title */
  }
  
  .header-logo {
    border-radius: 10px;
  }
  
  .header-title {
    font-size: x-large;
    padding: 0; /* Remove padding if not needed */
  }
  
  .search-button{
    right: 0;
    padding: 15px;
    padding-right: 25px;
    position: absolute;
  }