
body {
    
    font-family: 'Cheeky Rabbit', sans-serif;
    margin: 0;
    padding: 0;
    background: #ffe6e6;
}
.coming-soon-overlay {
    position: fixed; /* Use absolute if you want it to cover a specific container */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75); /* Semi-transparent black background */
    z-index: 9999; /* Ensure it's on top of other content */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.overlay-content h2 {
    font-size: 2rem;
    text-align: center;
}


@font-face {
    font-family: 'Cheeky Rabbit';
    src: url('cheekyrabbit.ttf') format('truetype');
}

.full-width-line {
    height: 4px; /* Height of the line */
    background-color: #000072; /* Color of the line */
    width: 100%; /* Full width of the screen */
    margin: 0 auto; /* Centers the line if it has a max-width */
  }

.custom-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #045ee7; /* Example background color */
    color: white;
}

.navbar-left, .navbar-center, .navbar-right {
    display: flex;
    align-items: center;
}

.navbar-center {
    justify-content: center;
    flex-grow: 1; /* Allows the center part to take up the extra space */
}

.navbar-center a {
    margin: 0 10px;
    text-decoration: none;
    color: white;
}

.navbar-logo {
    height: 50px; /* Adjust based on your logo's size */
    margin-right: 20px;
}

.navbar-right span {
    font-weight: bold;
}

/* Additional styling for hover effects on links */
.navbar-center a:hover {
    color: #ffcccc; /* Lighter shade for hover effect */
}



.header {
    display: flex;
    flex-direction: row;
    background: #ffcccc;
    text-align: center;
    padding: 20px;
}
.header h1 {
    margin: 0;
    color: #660000;
}
.nav-menu {
    background: #ff9999;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
}
.nav-menu a {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-weight: bold;
}
.nav-menu a:hover {
    background-color: #ff6666;
}
.main-content {
    justify-content: space-evenly;
    background: url('path-to-your-background-image.jpg.html') no-repeat center center;
    background-color: #67e9ff;
    background-size: cover;
    padding: 50px;
    text-align: center;
}
.tokenomics {
    display: flex;
    justify-content: space-evenly;
    padding-left: 10vw;
    background: #ffcccc;
    padding: 30px;
    text-align: center;
}
.footer {
    background: #ff9999;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.img-pop {
    transition: transform 0.3s ease-in-out;
}

.img-pop:hover {
    transform: scale(1.05); /* The image will grow to 105% of its size */
}

.img1 {

height:10vh;
}
.img2 {
    height:50vh;
}
.img3 {
    height:50vh;
}
.boxcatimg {
    height:70vh;
}
.roaringkittyimg {
    height:60vh;
}
.gamingcatimg {
    height:70vh;
}
.coffeecatimg {
    height:70vh;
}
.funcatimg {
    height:70vh;
}
.lovecatimg {
    height:50vh;
    
    
}



/* Adjustments to the existing CSS */
.text-content {
    max-width: 40vw;
    display: flex;
    flex-direction: column; /* Stack text vertically */
    align-items: center; /* Center text horizontally */
    justify-content: center; /* Center text vertically */
    text-align: center; /* Ensure text is centered */
    flex: 1; /* Take up the remaining space */
    font-size: 20px; /* Example font size, adjust as needed */
}

/* To make the text larger specifically for headings and paragraphs, you can add */
.text-content h2,
.text-content h3,
.text-content p {
    font-size: 24px; /* Larger font size for headings and paragraphs */
}

/* Optional: Adjust the margin between paragraphs if needed */
.text-content p {
    margin: 10px 0; /* Adjust space between paragraphs */
}

