body{
    font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  margin: 0px;
  
}

.coming__soon {
	display: flex;
	flex-direction: column;
	align-items: center;
    position: relative;
	/* padding: 45px 0px; */
}
.social-media ul {
	display: flex;
	padding: 0;
	gap: 25px;
}
.social-media ul li{
    list-style: none;
    transition: all 0.3s ease-in-out;
}
.social-media ul li:hover{
    transform: scale(1.3,1.3);
    cursor: pointer;
}
.subscribe__email {
	position: relative;
    display: flex;
}
.subscribe__email input {
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #E0E0E0;
    width: 100%;
    font-size: 14px;
}
.subscribe__email input:focus {
    outline: none;
    border: solid 1px #55b95d;
}
.subscribe__email button {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 20px;
    border-radius: 0 5px 5px 0;
    background-color: #55b95d;
    border: none;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
}
.subscribe h3 {
	font-size: 14px;
	font-weight: normal;
	margin-bottom: 5px;
}
.copyright {
	font-size: 14px;
	color: #666;
	font-weight: 400;
	margin-top: 20px;
}
.logo img{
    max-width: 100%;
}
.coming__soon__image img {
	height: auto;
	width: 100%;
}
.subscribe {
	width: 100%;
}
.coming__soon__container {
	width: 500px;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100vh;
	justify-content: space-around;
}
.coming__soon__text {
	align-items: center;
	display: flex;
	flex-direction: column;
}
.coming__soon__text h1 {
	font-weight: 600;
	color: #222;
	font-size: 17px;
	margin: 0px;
	text-align: center;
	margin-bottom: 0px;
	text-transform: uppercase;
}
.coming__soon__text h2 {
	font-weight: 500;
	color: #222;
	font-size: 26px;
    margin: 0px;
    margin-bottom: 25px;
    margin-top: 25px;
}
.coming__soon__text h4 {
	font-weight: 400;
	color: #888;
	margin: 0px;
	font-size: 13px;
}
.particle{
    position: absolute;
}
.particle1 {
	left: 20%;
	top: 5%;
    animation: float 8s ease-in-out infinite;
}
.particle2 {
	left: 20%;
	top: 30%;
    animation: float 5s ease-in-out infinite;
}
.particle3 {
	left: 2%;
	top: 45%;
    animation: float 6s ease-in-out infinite;
}
.particle4{
    left: 20%;
    bottom: 10%;
    animation: float 7s ease-in-out infinite;
}
.particle5 {
	right: 20%;
	top: 6%;
    animation: float 8s ease-in-out infinite;
}
.particle6 {
	right: 12%;
	top: 30%;
    animation: float 5s ease-in-out infinite;
}
.particle7 {
	right: 5%;
	bottom: 5%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}

@media screen and (min-width: 320px) and (max-width: 768px) {
    .coming__soon__container {
        width: 90%;
    }
    .logo img {
        width: 140px;
    }
    .particle1{
        height: 15px;
    }
    .particle2 {
        height: 10px;
        top: 27%;
    }
    .particle3 {
        height: 30px;
    }
    .particle4 {
        height: 25px;
        left: 10%;
    }
    .particle5 {
        height: 7px;
        top: 15%;
    }
    .particle6{
        height: 15px;
    }
    .particle7 {
        height: 20px;
        bottom: 7%;
    }
    .coming__soon__text h2 {
        font-size: 20px;
    }
    .subscribe h3 {
        font-size: 14px;
    }
    .social-media ul {
        display: flex;
        padding: 0;
        gap: 15px;
    }
    .copyright {
        font-size: 13px;
        color: #666;
        font-weight: 400;
        margin-top: 20px;
        text-align: center;
    }
}