body {
		margin: 0;
		padding: 0;
		font-family: Arial, sans-serif;
		color: black;
    }
        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            text-align: center;
            background: url(https://static.gwvkyk.com/media/7042f3984197641707877.png) no-repeat center center/cover;
            padding: 20px;
        }
        .logo {
            font-size: 2.5em;
            font-weight: bold;
            color: #00bfff;
			max-width:100%;
        }
        .tagline {
            font-size: 1.5em;
            margin: 20px 0;
        }
        .tagline span {
            color: #9840e1; /* Highlighted color */
            font-weight: bold;
        }
        .button {
            background-color: transparent;
            padding: 10px 20px;
            text-transform: uppercase;
            font-size: 1em;
            font-weight: bold;
            cursor: pointer;
            border-radius: 25px;
            margin-top: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
		.buttonimg{
			width: 100%;
		}
        .button:hover {
            background-color: #9840e1;
            color: black;
        }
        .container2 {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            text-align: center;
            background: url(https://static.gwvkyk.com/media/012d2c5421976a72d00ad.jpg) no-repeat center center/cover;
            padding: 20px;
        }
        .container2 h1 {
            color: #000; /* Bright aqua */
            font-size: 1.8em;
            margin-bottom: 20px;
        }
        .container2 p {
            line-height: 1.6;
            font-size: 1em;
        }
        .container2 span {
            color: #000; /* Highlighted text */
            font-weight: bold;
        }
		
		.container3 {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            text-align: center;
			background: url(https://static.gwvkyk.com/media/87c4378d219760916e0e9.jpg) no-repeat center center/cover;
            padding: 20px;
			gap: 20px;
		}

		.row {
		  display: flex;
		  justify-content: space-between;
		  gap: 10px;
		}

		.item {
		  text-align: center;
		  width: 100px;
		}

		.item img {
		  width: 100px;
		  height: 100px;
		  object-fit: cover;
		  border-radius: 8px;
		  border: 1px solid #ccc;
		}

		.item p {
		  margin: 10px 0 0;
		  font-size: 14px;
		  font-weight: bold;
		  color: #333;
		}
		.follow img {
		  max-width: 50px;
		  height: 50px;
		  border-radius: 50%;
		  margin: 0 20px;
		  transition: transform 0.3s ease;
		}
		.follow img:hover {
		  transform: scale(1.1);
		}