* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Helvetica, Arial, sans-serif;
}

body {
    text-align: center;
    --body-bg-color: #1b1c24;
    background-color: var(--body-bg-color);
    /* Dark grey */
    color: white;
    /* White text */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.text {
    background-image: linear-gradient(to top left, #c79eff, #89ffff);
    /* Gradient from bottom-left to top-right */
    -webkit-background-clip: text;
    /* Clip the gradient to the text */
    background-clip: text;
    /* Standardize across browsers */
    color: transparent;
    /* Make the text color transparent so the gradient shows */
    font-weight: bold;
    /* Make the text bold */
    position: relative;
    z-index: 10;
    font-size: 3rem;
    margin-bottom: 20px;
}


h1 {
    font-size: 3rem;
}

.dazz-logo {
    width: 150px;
    /* Set the size of the logo */
    height: auto;
    /* Maintain aspect ratio */
    margin-top: 20px;
    margin-bottom: 20px;
    /* Adds space below the image */
    z-index: 10;
}

.icons {
    display: flex;
    justify-content: center;
    /* This centers the icons horizontally */
    gap: 1.2rem;
    flex-wrap: wrap;
    width: 100%;
    /* Ensure the container is full-width */
    align-items: center;
    /* Optional: if you want to center vertically as well */
    z-index: 10;
}


.icon {
    width: 30px;
    height: auto;
    transition: transform 0.3s ease;
    object-fit: contain;
    z-index: 10;
}

.icon:hover {
    transform: scale(1.2);
    /* Makes the icon 20% larger */
}

a {
    text-decoration: none;
}