      body {
        margin: 20;
        padding: 0;
        font-family: Arial, sans-serif;
        background-color: #000;
        color: #fff;
        text-align: center;
        position: relative;
        z-index: 0;
     }

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-size: cover;
    background-position: 50% 50%;
    z-index: -1;
}

nav {
    background-color: rgba(3, 3, 3, 0.8);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    overflow-x: auto;
}

nav img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s;
    border-radius: 30px;
}

nav img:hover {
    transform: scale(1.1);
}

.nav-buttons {
    display: flex;
    gap: 10px;
    white-space: nowrap;
}

.nav-buttons a {
    background-color: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 10px;
}

.nav-buttons a:hover {
    background-color: #141414;
}


.glowing-text {
            font-size: 3rem;
            text-shadow: 0 0 5px #fff, 0 0 10px #fff;
	    margin-top: 100px;
        }

.image-section {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(3, 3, 3, 0.7);
    padding: 20px;
    border-radius: 10px;
}

.image-section img {
    width: 100px;
    height: 100px;
    margin: 0 10px;
    transition: filter 0.3s;
    border-radius: 10px
}

.image-section img:hover {
    filter: brightness(70%);
    cursor: pointer;
}

h2, h3, h4, h5, h6, p {
		color: white;
		text-align: center;
	}

	.h7 {
		font-size: 5rem;
		color: white;
		text-align: center;
	}

	.h8 {
		font-size: 7rem;
		color: white;
		text-align: center;
	}

      .blank-button {
        padding: 13px 23px;
        background-color: #000;
        color: #fff;
        border: 2px solid #fff;
        text-decoration: none;
        font-weight: bold;
        border-radius: 5px;
        margin-left: 10px;
        transition: transform 0.3s, filter 0.3s;
    }
    .blank-button:hover {
    transform: scale(1.1);
    filter: invert(1);
}
      hr {
            border: none;
            border-top: 2px solid white; 
            margin: 15px auto; 
            width: 50%; 
            height: 1px; 
            border-radius: 5px; 
        }

.image-container {
    position: relative;
    display: inline-block;
    margin: 5px;
}

.image-container img {
    width: 110px;
    height: 110px;
    border-radius: 10px;
    border: 3px solid #fff;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.1);
    filter: brightness(80%);
}

#iframe-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

#iframe-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: #000;
    padding: 20px;
    border: 2px solid white;
    border-radius: 10px;
    display: none;
}

#iframe {
    width: 870px;
    height: 490px;
    border: 3px solid white;
    border-radius: 10px;
}

#close-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#close-button {
    width: 30px;
    height: 30px;
    background-color: #000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 2px solid white;
    border-radius: 50%;
    transition: transform 0.3s ease, filter 0.3s ease;
}

#close-button:hover {
    transform: scale(1.1);
    filter: brightness(80%);
}
