
 html,body {
 max-width: 100vw;font-family: "DM Sans", sans-serif;
 overflow-x: hidden; 
  scroll-behavior: smooth;


 }
 

	body {
    background: #ea8cc8;
	}


   h1, h2 {
 font-family: "Rampart One", sans-serif;

    }

	
	h2 {
		text-transform: uppercase;
	font-size: 3em
	}
	
	h3 {
	font-size: 2em;
	}


	
	p {
	max-width: 800px;
	font-size: 20px;
	margin-left: auto;
	margin-right: auto;
	}
	
	a {
		
		color: inherit
	}
	a:hover {
		text-decoration: none!important;
		color: inherit
	}
	

    .navbar-custom {

	  font-weight: 600!important;
	  

    }
	
	

	
    .navbar-custom a{

	  font-weight: 600!important;
	  color: white;
	  transition: all .6s;
	  -webkit-transition: all .6s;

    }
	
	   .navbar-custom a:hover{

	  font-weight: 600!important;
	  color: var(--blue2); 
		transform: rotate(0deg);

    }
	

    .navbar-custom .navbar-brand,
    .navbar-custom .navbar-nav .nav-link {
       font-family: "DM Sans", sans-serif;
	   font-size: 18px;	
    }
    .btn-custom {
      background-color: var(--accent-color);
      color: #fff;
	  font-weight: 600;
	  border-radius: 40px;
	  font-size: 16px;
	  transition: all .6s;
	  -webkit-transition: all .6s;
    }
	
	.btn-custom:hover {
	transform: scale(1.1);
	      background-color: var(--primary-color);
	}

#clouds{
	padding: 100px 0;
	position: absolute;
	z-index: -1;
	
}

/*Time to finalise the cloud shape*/
.cloud {
	width: 200px; height: 60px;
	background: #fff;
	
	border-radius: 200px;
	-moz-border-radius: 200px;
	-webkit-border-radius: 200px;
	
	position: relative; 
}

.cloud:before, .cloud:after {
	content: '';
	position: absolute; 
	background: #fff;
	width: 100px; height: 80px;
	position: absolute; top: -15px; left: 10px;
	
	border-radius: 100px;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;
	
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
	-moz-transform: rotate(30deg);
}

.cloud:after {
	width: 120px; height: 120px;
	top: -55px; left: auto; right: 15px;
}

/*Time to animate*/
.x1 {
	-webkit-animation: moveclouds 15s linear infinite;
	-moz-animation: moveclouds 15s linear infinite;
	-o-animation: moveclouds 15s linear infinite;
}

/*variable speed, opacity, and position of clouds for realistic effect*/
.x2 {
	left: 200px;
	
	-webkit-transform: scale(0.6);
	-moz-transform: scale(0.6);
	transform: scale(0.6);
	opacity: 0.6; /*opacity proportional to the size*/
	
	/*Speed will also be proportional to the size and opacity*/
	/*More the speed. Less the time in 's' = seconds*/
	-webkit-animation: moveclouds 25s linear infinite;
	-moz-animation: moveclouds 25s linear infinite;
	-o-animation: moveclouds 25s linear infinite;
}

.x3 {
	left: -250px; top: -200px;
	
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0.8; /*opacity proportional to the size*/
	
	-webkit-animation: moveclouds 20s linear infinite;
	-moz-animation: moveclouds 20s linear infinite;
	-o-animation: moveclouds 20s linear infinite;
}

.x4 {
	left: 470px; top: -250px;
	
	-webkit-transform: scale(0.75);
	-moz-transform: scale(0.75);
	transform: scale(0.75);
	opacity: 0.75; /*opacity proportional to the size*/
	
	-webkit-animation: moveclouds 18s linear infinite;
	-moz-animation: moveclouds 18s linear infinite;
	-o-animation: moveclouds 18s linear infinite;
}

.x5 {
	left: -150px; top: -150px;
	
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0.8; /*opacity proportional to the size*/
	
	-webkit-animation: moveclouds 20s linear infinite;
	-moz-animation: moveclouds 20s linear infinite;
	-o-animation: moveclouds 20s linear infinite;
}

@-webkit-keyframes moveclouds {
	0% {margin-left: 1000px;}
	100% {margin-left: -1000px;}
}
@-moz-keyframes moveclouds {
	0% {margin-left: 1000px;}
	100% {margin-left: -1000px;}
}
@-o-keyframes moveclouds {
	0% {margin-left: 1000px;}
	100% {margin-left: -1000px;}
}
	
	header {
		position: relative;
	background: transparent!important;
	margin-top: 0px;
	min-height: 100vh;
	padding-bottom: 100px!important;
	position: relative;padding-top: 100px;
	margin-bottom: 0px!important;
	}
	
	
	.milestonebox {
		border: 3px solid #ea8cc8;
		border-radius: 10px;
		padding: 10px;
		margin: 6px;
		background: #none;
		transition: all .6s;
		-webkit-transition: all .6s;
		transform: scale(.9);
	}
	
	.milestonebox h3 {
		color: white;
	}
	
	.milestonebox:hover {
		transform: scale(1);
	}
	
	.forkpork {
	
	}
.wavepattern {z-index: 1;
width: 100%;
display: block;
height: 100px;
position: absolute;
top: -50px;
left: 0;
background: url('wavepattern.png');
background-repeat: repeat-x;
}

.wavepattern2 {z-index: 2;
width: 100%;
display: block;
height: 100px;
position: absolute;
top: -50px;
left: 0;
background: url('wavepattern2.png');
background-repeat: repeat-x;
}

.moon {
	position: absolute;
	top: 4%;
	right: 4%;
	width: 100px;
	z-index: -1;
}
.about {

}

.tokenomics {
	z-index: 3;
	position: relative;
	
}
@keyframes sail {
  0%{
    transform: translateX(100%); /* Start off-screen to the right */
  }
  100% {
    transform: translateX(-100vw); /* End off-screen to the left */
  }
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-3deg); /* Slight tilt to simulate wiggle */
  }
  75% {
    transform: rotate(3deg); /* Slight tilt to simulate wiggle */
  }
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;

}

.ship {
  position: absolute;
  bottom: 0px;
  right: 0%; /* Start from the far left of its container */
  width: 200px;
  z-index: -1;
  animation: sail 15s linear infinite;
}

@keyframes rotate-animation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1); /* Original size */
  }
  50% {
    transform: scale(1.05); /* Slightly larger */
  }
}

.pulse {
  animation: pulse 3s ease-in-out infinite;
}

section {
	padding-top: 80px;
	padding-bottom: 80px;
}

.rotate {
  animation: rotate-animation 60s linear infinite;
}

.bg-dark{
	background: #3b3b3b!important;
}
header h1 {
	font-size: 100px;
	}

.floki {
	max-width: 450px
}

.pork {
	position: absolute;
	bottom: 40%;
	transform: rotateY(180deg)!important;
	left:25%;
	z-index: -1;
	width: 140px;
}


.bg-dark {
	
}

.button {
  background-color: transparent; /* Pink background */ font-family: "Rampart One", sans-serif;
  border-radius: 10px;
  color: black; /* Black text */
  padding: 10px 20px; /* Padding around the text */
  border: 3px solid black; /* Solid black border */

  font-size: 22px; /* Size of the text */
  font-weight: bold; /* Make the text bold */
  text-transform: uppercase; /* UPPERCASE text */
  cursor: pointer; /* Hand cursor on hover */
  outline: none; /* Remove outline */
  user-select: none; /* Prevent text selection */
  transition: background-color 0.3s, transform 0.3s; /* Smooth transition for hover effect */
}

.button:hover {
  background-color: #303030; /* Lighter pink background on hover */
  transform: scale(1.05); /* Slightly increase size on hover */
  color:#fe98d9!important
}

.button:active {
  transform: scale(0.95); /* Slightly decrease size on click */
}

.button2 {
  background-color: transparent; /* Pink background */ font-family: "Rampart One", sans-serif;
  border-radius: 10px;
  color: #fe98d9; /* Black text */
  padding: 10px 20px; /* Padding around the text */
  border: 3px solid #fe98d9; /* Solid black border */

  font-size: 22px; /* Size of the text */
  font-weight: bold; /* Make the text bold */
  text-transform: uppercase; /* UPPERCASE text */
  cursor: pointer; /* Hand cursor on hover */
  outline: none; /* Remove outline */
  user-select: none; /* Prevent text selection */
  transition: background-color 0.3s, transform 0.3s; /* Smooth transition for hover effect */
}

.button2:hover {
  background-color: #fe98d9; /* Lighter pink background on hover */
  transform: scale(1.05); /* Slightly increase size on hover */
  color:#303030!important
}

.button2:active {
  transform: scale(0.95); /* Slightly decrease size on click */
}

.buttons-container {
  display: flex;
  flex-direction: row; /* Default layout: side by side */
  justify-content: center; /* Center the buttons horizontally */
  align-items: center; /* Align the buttons vertically */
  gap: 10px; /* Space between buttons */
}

/* Responsive layout for mobile */
@media (max-width: 768px) {
  .buttons-container {
    flex-direction: column; /* Stack the buttons on mobile */
  }
}

.tokenomicbox {
	padding: 20px;
	border-radius: 20px;
	border: 4px solid black;
	transform: scale(.9);
	transition: all .6s;
	-webkit-transition: all .6s;
}

.tokenomicbox:hover {
	transform: scale(1);
}

@media (max-width: 768px) {
	
	.bg-dark h2, .bg-dark h3 {
		color: #ea8cc8;
	}
	
	    .navbar-custom {
background:#ea8cc8;
	  font-weight: 600!important;
	  

    }
	
header h1 {
	font-size: 60px;
	}

.floki {
	max-width: 90%;
}

.pork {
	position: absolute;
	top: 20px;
	left:35%;
	z-index: -1;
	width: 120px;
}
#contact h3 {
	font-size: 14px!important
}

.moon {
	position: absolute;
	top: 2%;
	right: 2%;
	width: 60px;
	z-index: -1;
}

.navbar-toggler-icon {
  display: block;
  position: relative;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: background-color 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -10px;
}

.navbar-toggler-icon::after {
  top: 10px;
}

/* Adjust the expanded state animations */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: translateY(10px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: translateY(-10px) rotate(-45deg);
}


  /* Adjust image sizes */
  img {
    /* Example: Make images responsive */
    max-width: 100%;
    height: auto;
  }

	
}

.btn-primary {
	font-weight: 500;
	font-size: 16px;  

	border-radius: 10px;
	background: green;
	border: none;
	font-family: 'ObjectSans-Regular';	box-shadow: 0 0 10px rgba(173, 216, 230, 0.6), inset 0 10px 20px rgba(255, 255, 255, 0.4); /* Light blue glow */

}


