
h1 {
    text-align: center;
    display: block;
    font-weight: 1000px;
    transition: transform 0.3s ease;
    margin-top: 30px;
    
    position: relative; 
    z-index: 1; 
}

h1:hover {
    transform: scale(1.05);
    
}

#Title {
    margin: 0 auto;
    height: auto;
    width: 500px;
    display: block;
    position: relative;
    max-height: 5%;
    background-color: grey;
    border: solid cyan;
    border-radius: 15px;
    transition: transform 0.3s ease;
    margin-top: 10px;
    z-index: 1; 
}
#Title h1 {
    filter: blur(3px);
}
#Title h1:hover {
    filter: blur(0px);
}

#Title:hover {
    transform: scale(1.05);
}

.bar {
    background-color: hsl(0, 1%, 31%);
    position: relative;
    border-radius: 15px;
    z-index: 1;
}

.bar ul {
    list-style-type: none;
    padding: 15px;
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: space-around; /* or space-between */
}
@media (max-width: 768px) {
    .bar ul {
        justify-content: center; /* Center items on smaller screens */
        align-items: center; /* Center items vertically */
    }
}

.bar a {
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    display: block;
    transition: transform 0.3s ease;
    text-align: center;
}

.bar a:hover {
    background-color: black;
    transform: scale(1.1);
    border-radius: 25px;
}

.bar li {
    display: flex;
    flex: 0 1 auto;
}

body {
    margin: 0px;
    padding: 0px;
    background: linear-gradient(90deg, blue, gray);
}

.fix1 {
    position: fixed;
    display: inline;
}

nav {
    display: block;
}


#particles-container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

#particles-js { 
    width: 100%;
    height: 100%;
}
#play-button button{
    display: inline-block;
    text-align: center;
    margin-top: 165px;
    height: 100px;
    width: 350px;
    border-radius: 25px;
    background-color: rgb(162, 107, 162);
    border-width: 6px;
    border-color: #1797ed;
    overflow: hidden;
    position: relative;
    
    
}
#play-button:hover {
    transform: scale(1.10);
    overflow: hidden;
}
#play-button {
    transition: transform 0.3s ease;
    
}