@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

#container {
    background: transparent;
    position: relative;
}



.left-container {
    flex: 1; /* Take up all available space in the left container */
}

.right-container {
    flex: 1; /* Take up all available space in the right container */
    margin-left: 20px; /* Add some margin for spacing */
}




section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-size: cover;
    background-position: top;
}

header {
    position: static;
    top: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    position: relative;
    color: transparent; /*#000*/;
    font-size: 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    background-image: url("duck.gif");
    background-clip: text;
    -webkit-background-clip: text;
    background-position: center;
    background-size: contain;
}

header .navigation a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 2px;
    padding: 2px 15px;
    border-radius: 20px;
    transition: 0.3s;
    transition-property: background;
}

header .navigation a:not(:last-child) {
    margin-right: 30px;
}

header .navigation a:hover {
    background: #fff;
}

.content {
    /*max-width: 670px;*/
    margin: 60px 100px;
    display:flex;
    flex-direction:row;
    justify-content: space-around;
}

.content .info {
  max-width: 670px;
}

.content img {
  display:block;
  /*border:1px solid lime;*/
  animation: imgspin 5s infinite;
}

@keyframes imgspin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.content .info h2 {
    color: transparent; /*#226A80;*/
    font-size: 55px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 60px;
    margin-bottom: 30px;
    background-image: url("flames.gif");
    background-clip: text;
    -webkit-background-clip: text;
    background-position: 105px center;
}

.content .info h2 span {
    color: #ffff;
    font-size: 23px;
    font-weight: 600;
}

.content .info p {
    overflow-wrap:break;
    background-color: black;
    opacity:0.8;
    padding:5px;


    color: white;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 40px;
    padding-left:10px;
    padding-right:10px;
}

.content .info-btn {
    color: #fff;
    background: #226A80;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
    transition-property: background;
}

.content .info-btn:hover {
    background: #0C4F60;
}

.media-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.media-icons a {
    position: relative;
    color: #111;
    font-size: 25px;
    transition: 0.3s;
    transition-property: transform;
}

.media-icons a:not(:last-child) {
    margin-right: 60px;
}

.media-icons a:hover {
    transform: scale(1.5);
}

label {
    display: none;
}

#check {
    z-index: 3;
}

.fa-brands {
    color:white;
    shadow-box:1px 1px black;
}

@media (max-width: 960px) {
    label {
        display: block;
        font-size: 25px;
        cursor: pointer;
        transition: 0.3s;
        transition-property: color;
        z-index: 5;
    }
    label i {
        text-decoration: none;
        color: #000;
    }
    label:hover {
        color: #fff;
    }
    .navigation {
        display: none;
    }
    label .close-btn {
        display: none;
    }
    .active {

        background: rgba(114, 223, 255, 0.9);
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .active a {
        margin-right: 0;
        margin-bottom: 50px;
    }
    .navigation.active a {
        font-weight: 700;
        letter-spacing: 2px;
    }
    .a .show {
        display: none;
    }
    .a .close {
        display: block;
    }
}

@media (max-width: 560px) {
    .content .info h2 {
        font-size: 35px;
    }
    .content .info h2 span {
        font-size: 30px;
    }
    .content .info p {
        font-size: 13px;
    }
    html, body, * {
margin: 0 auto;
}
}




body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f0f0f0;
}

.container {
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center; /* Center the contents horizontally */
    display: flex;
    justify-content: space-between; /* Put containers at the ends */
    align-items: flex-start; /* Align items at the top */
    padding: 20px; /* Add some padding */

}


.items {
    margin-top: 20px;
}

.click-image {
    margin: 0 auto;
    cursor: pointer;
}



@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}


/* /////////////////////////////////////////////////////////////////// */
*, ::before, ::after {
box-sizing: border-box;	margin: 0; padding: 0;
}

@mixin flex-center-hv { display: flex; justify-content: center; align-items: center; }
/* /////////////////////////////////////////////////////////////////// */
html { font: 12pt 'Minecraftia', sans-serif; }
body {
height: 100vh;
@include flex-center-hv;
flex-direction: column;
background-color: #fff;
background-image: url('bees.jpg');
background-size: cover;
background-position: center;
position: relative;
background-repeat: no-repeat;
background-attachment: fixed;
}


/* Minecraft Style Button */
.mc-button {
font-family: 'Minecraftia', sans-serif;
font-size: 13px;
height: var(--btn-size);
cursor: pointer;
user-select: none;
background: #999 url('https://i.ibb.co/rb2TWXL/bgbtn.png') center / cover;
image-rendering: pixelated;
border: 2px solid #000;
padding: 0.3em 0.6em; /* Adjust padding as needed */
@include flex-center-hv;
color: #DDD;
text-shadow: 2px 0 0 #000, 0 -2px 0 #000, 0 2px 0 #000, -2px 0 0 #000;
box-shadow: inset -2px -4px #0006, inset 2px 2px #FFF7;
/* Mouse over */
&:hover {
background-color: rgba(100, 100, 255, 0.45);
text-shadow: 2px 0 0 #000, 0 -2px 0 #000, 0 2px 0 #000, -2px 0 0 #000;
color: #FFFFA0;
}
&:active {
box-shadow: inset -2px -4px #0004, inset 2px 2px #FFF5;
}
/* Button title */
.title {
padding: 0; /* Reset padding */
}

/* Others */
&.full {
height: auto; /* Let the button size be determined by the content */
}
&.lang {
& img {
    width: 26px;
    height: 26px;
}
& .title {
    padding-bottom: 0;
}
}
}
.mc-button:disabled {
opacity: 0.95; /* Adjust the opacity to control the level of grayed-out appearance */
cursor: not-allowed; /* Change cursor to indicate it's not clickable */
/* Optionally, you can add a different background color to make it visually distinct */
background-color: #ccc; /* Adjust the color as needed */
color: #999; /* Adjust the text color as needed */
box-shadow: none; /* Remove box shadow when disabled */
/* You can add other styles as needed to indicate it's disabled */
}

.clickerGame{
font-family: 'Minecraftia', sans-serif;

}

.points{
color: #FFD36E;
font-weight: bold;
text-shadow: 2px 0 0 #000, 0 -2px 0 #000, 0 2px 0 #000, -2px 0 0 #000;

}

.main1 {
font-family: 'Minecraftia', sans-serif;
font-size: 13px;
display: flex;
justify-content: center;
align-items: top;
position: relative;
flex-direction: column;
height: auto;
padding: 0 15px;
padding-bottom: 15px;
padding-bottom: 15px;
display: grid;
width: auto;
background-color: #c6c6c6;
box-shadow: 8px 0 0 0 #555555,
0 8px 0 0 #555555,
4px 4px 0 0 #555555,
-8px 0 0 0 #e8e8e8,
0 -8px 0 0 #e8e8e8,
-4px -4px 0 0 #e8e8e8,
0 0 0 4px #b5b4b5,
4px 8px 0 0 #555,
8px 4px 0 0 #555,
-4px -8px 0 0 #e8e8e8,
-8px -4px 0 0 #e8e8e8,
8px -4px 0 0 #000,
4px -8px 0 0 #000,
-8px 4px 0 0 #000,
-4px 8px 0 0 #000,
-8px -8px 0 0 #000,
8px 8px 0 0 #000,
-12px 0 0 0 #000,
-12px -4px 0 0 #000,
12px 0 0 0 #000,
12px 4px 0 0 #000,
0 -12px 0 0 #000,
-4px -12px 0 0 #000,
0 12px 0 0 #000,
4px 12px 0 0 #000;
}


/* Style for the category buttons */
/* Style for the category buttons */
.category button {
    display: block;
    width: 100%;
    height: 40px; /* Adjust the height as needed */
    white-space: nowrap; /* Prevent text from wrapping */
    overflow: hidden;
    text-overflow: ellipsis; /* Add ellipsis for overflowing text */
}

.item1 {
    grid-column-start: 1;
    grid-column-end: 1;
  }
.item2 {
    grid-column-start: 2;
 }


@font-face {
font-family: Minecraftia;
src: url('Minecraftia-Regular.ttf') format('truetype');; 
font-weight: normal; /* You can specify 'bold' or 'normal' */
font-style: normal; /* You can specify 'italic' or 'normal' */

}

footer {
color: #fff; /* Text color for the footer */
padding: 10px; /* Add padding for spacing */
box-sizing: border-box; /* Include padding and borders in the width */
text-align: right; /* Align the text to the left */
margin-top: auto;
}

.credit {
color: white;
text-shadow: 2px 0 0 #000, 0 -2px 0 #000, 0 2px 0 #000, -2px 0 0 #000;

margin: 0; /* Remove default margin */
font-family: 'Minecraftia', sans-serif;

}


/* Styles for the menu container */
.menu-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
}

.skin-equip{
    display: inline-flex;
}


/* Style for the menu tabs */
.menu-tabs {
    display: flex;
    border: 2px solid #000;
}

/* Style for the menu tab buttons */
.menu-tab {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    white-space: nowrap; /* Prevent text from wrapping */
    text-overflow: ellipsis; /* Add ellipsis for overflowing text */
    
}


/* Style for the inactive (non-selected) menu tabs */
.menu-tab:not(.active) {
    opacity: 0.95; /* Adjust the opacity to control the level of grayed-out appearance */
    /* Optionally, you can add a different background color to make it visually distinct */
    background-color: #ccc; /* Adjust the color as needed */
    color: #999; /* Adjust the text color as needed */
    box-shadow: none; /* Remove box shadow when disabled */
    /* You can add other styles as needed to indicate it's disabled */
}
/* Style for the menu content */
.menu-content {
    width: 100%;
}

select{
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

