body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: "Poppins", sans-serif;
}

h1 {
    color: white;
    font-size: 12em;
    text-align: center;
    z-index: 999;
}

h2 {color: white;}

p {
    z-index: 999;
    color: white;
    font-size: 2em;
	 text-align:center ;

}

button.shop {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.5em;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 20px;
}

button.shop::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background-color: white;
    transition: all 0.4s ease;
    z-index: 0;
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
}

button.shop:hover::before {
    width: 0;
    height: 0;
    opacity: 1;
}

button.shop span {
    position: relative;
    z-index: 1;
}

.poppins-regular {
    font-weight: 400;
}
.poppins-bold {
    font-weight: 700;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 6em;
    }
	p {
    z-index: 999;
    color: white;
    font-size: 1em;
	text-align:center ;
}
}

@media (max-width: 768px) {
    h1 {
        font-size: 4em;
    }
		p {
    z-index: 999;
    color: white;
    font-size: 1em;
	text-align:center ;
}
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }
		p {
    z-index: 999;
    color: white;
    font-size: 1em;
	text-align:center ;
}
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.contact-form {
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    text-align: center;
	margin-top: -150px;
	margin-bottom: 15px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    background: transparent;
    border: 1px solid white;
    color: white;
	border-radius: 50px;
}

.contact-form button {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.4s ease, color 0.4s ease;
}

.contact-form button:hover {
    background: white;
    color: black;
}

p .content {
	text-align: center;
}