/*  V1.3 */
body, html {
    overflow: hidden; /* Disable scrolling */
    height: 100%; /* Ensure the body and html elements take up the full height */
    margin: 0; /* Remove default margin */
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden; /* Prevent default scrolling */
    background-image: url('images/Background.jpg');
    background-repeat: no-repeat;
    background-attachment: scroll; 
    background-size: cover;
    margin: 0;
    font-family: 'Comic Neue', Arial, sans-serif; /* Updated font */
}

.container {
    text-align: center;
    overflow: hidden; /* Prevent scrolling within the container */
    max-height: 100vh; /* Ensure the container does not exceed the viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.intro-text, .intro-text1 {
    font-size: 1.5em; /* Adjust the size as needed */
    color: #3d3824; /* Black text color */
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff; /* White outline */
    margin-top: 5px; /* Adjust the space above the text */
    margin-bottom: 0px; /* Adjust the space below the text */
    text-align: center; /* Center the text */
    user-select: none; /* Prevent text selection */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    font-family: 'Eater', cursive; /* Apply the Eater font family */
    height: 3vh; /* Adjust the height as needed */
}

.token-address {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white; /* Adjust the color as needed */
    font-size: 1em; /* Adjust the size as needed */
    background-color: rgba(0, 0, 0, 0.5); /* Optional: Add a background color */
    padding: 5px;
    border-radius: 5px;
}

.social-links {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 10px; /* Space between the logos */
    background-color: transparent; /* Change to transparent to remove the gray background */
}

.social-logo {
    width: 30px; /* Adjust the size as needed */
    height: 30px; /* Adjust the size as needed */
    cursor: pointer;
    object-fit: contain; /* Ensure the image fits within the container */
}

.logo-container {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 130px; /* Adjust the size as needed */
    height: 130px; /* Adjust the size as needed */
    border-radius: 50%; /* Make the container circular */
    overflow: hidden; /* Ensure the image fits within the circle */
    display: flex;
    justify-content: center;
    align-items: center;
}

#logoImage {
    width: 115%;
    height: 115%;
    object-fit: cover; /* Ensure the image covers the container */
}

h1 {
    font-size: 6em; /* Adjust the size as needed */
    color: white; /* White text color */
    font-weight: bold; /* Bold text */
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; /* Black outline */
    user-select: none; /* Prevent text selection */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    margin-bottom: 0px; /* Reduce the space below the title */
    object-fit: cover; /* Ensures the image covers the container */
    object-position: top; /* Crops the top of the image */
    height: 9vh; /* Adjust the height as needed */
    font-family: 'Chewy', sans-serif; /* Apply the Chewy font family */
}


#clickCounter {
    font-size: 6em; /* Adjust the size as needed */
    color: white;
    font-weight: 900;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; /* Black outline */
    margin-top: 0px; /* Remove the space above the counter */
    margin-bottom: 0px; /* Adjust the space below the counter if needed */
	object-fit: cover; /* Ensures the image covers the container */
    object-position: top; /* Crops the top of the image */
    height: 4vh; /* Adjust the height as needed */
	font-family: 'Chewy', sans-serif; /* Apply the Chewy font family  -----  this was also good*/
}

img {
    max-width: 100%;
    cursor: pointer;
    user-select: none; /* Prevent selection */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-drag: none; /* Prevent dragging */
    -webkit-user-drag: none; /* Safari */
    object-fit: cover; /* Ensures the image covers the container */
    object-position: top; /* Crops the top of the image */
    height: 75vh; /* Adjust the height as needed */
}






