* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: bold;
}

html, body {
    height: 100%;
    width: 100%;
}

header {
    width: 100%;
    background-color: #333;
    color: rgba(255, 255, 255, 0.505);
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 100;
}

.menu-icon {
    cursor: pointer;
    font-size: 24px;
}

.video-background {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    padding-top: 50px;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Add styles for the invisible buttons */
.about-button {
    position: absolute;
    width: 170px; /* Adjust width and height as needed */
    height: 75px;
    background-color: transparent;
    cursor: pointer;
}

.contact-button {
    position: absolute;
    width: 210px; /* Adjust width and height as needed */
    height: 75px;
    background-color: transparent;
    cursor: pointer;
}
/* Additional styles to position the buttons */
.about-button {
    top: 60%; /* Initial top position */
    left: 30%; /* Initial left position */
}

.contact-button {
    top: 60%; /* Initial top position */
    left: 60%; /* Initial left position */
}
