/* Basic resets and global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
}

/* Include Six Caps font */
@font-face {
    font-family: 'Six Caps';
    src: url('file:///C:/Users/DELL/Downloads/SixCaps-Regular.ttf') format('truetype');
    /* Add other font formats (woff, woff2, etc.) for better browser compatibility */
    /* Example:
    src: url('path/to/SixCaps-Regular.woff2') format('woff2'),
         url('path/to/SixCaps-Regular.woff') format('woff'),
         url('path/to/SixCaps-Regular.ttf') format('truetype'); */
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FFD700;
}

/* Home section styles */
.home-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#bgVideo {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.content {
    position: relative;
    z-index: 1;
}

.title {
    font-family: 'Six Caps', sans-serif;
    font-size: 4em; /* Increased font size to 4em */
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.5em;
    color: #aaa;
}

/* Other sections' styles can be added similarly */
/* Basic resets and global styles */
/* ... (existing styles) ... */

.subtitle {
    display: none; /* Hide the "Music Label" text */
}

/* ... (existing styles) ... */
/* Basic resets and global styles */
/* ... (existing styles) ... */

.title {
    font-family: 'Six Caps', sans-serif;
    font-size: 6em; /* Increased font size to 6em (adjust as needed) */
    margin-bottom: 10px;
}

/* ... (existing styles) ... */
