* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    position: relative;
}

.background-image {
    background: url('images/zerdava-background.jpg') no-repeat center center/cover;
    height: 100vh;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

.background-overlay {
    background-color: rgba(0, 0, 0, 0.6); /* Black overlay with transparency */
    filter: blur(5px); /* Apply blur to the overlay */
    height: 100vh;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: white;
}

.logo img {
    width: 250px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
}



.buttons a {
    text-decoration: none;
    color: white;
    background-color: #ff6600;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.buttons a:hover {
    background-color: #ff3300;
}

#story {
    background-color: rgba(0, 0, 0, 0.7); /* Dark background for readability */
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

#story h2 {
    font-size: 2em;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#story p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: justify;
}


.wallet-address {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: inline-block;
	align-items: center;
    gap: 10px;
    font-size: 1em;
}



.copy-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    color: #d2691e; /* Match the text color */
    transition: color 0.3s;
}

.copy-button:hover {
    color: #a0522d; /* Darker shade on hover */
}

/* Media Query for Smaller Screens */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8em; /* Further reduce heading size */
    }

    p {
        font-size: 0.9em; /* Reduce text size */
    }

    .logo img {
        width: 100px; /* Even smaller logo */
    }

    .buttons a {
        padding: 6px 10px; /* Smaller buttons */
        font-size: 0.9em; /* Reduce button font size */
    }

    #story h2 {
        font-size: 1.3em; /* Smaller story heading */
    }

    #story p {
        font-size: 0.8em; /* Smaller story text */
    }

    .wallet-address {
        font-size: 0.8em; /* Smaller wallet address text */
    }
}
