body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #f1f1f1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #333;
    padding: 20px;
    text-align: center;
    color: #f1f1f1;
}

header h1 {
    font-size: 3em;
    margin: 0;
    animation: glow 1s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #e91e63, 0 0 20px #e91e63, 0 0 30px #e91e63, 0 0 40px #e91e63, 0 0 50px #e91e63, 0 0 60px #e91e63, 0 0 70px #e91e63;
    }
    to {
        text-shadow: 0 0 20px #ff3f4e, 0 0 30px #ff3f4e, 0 0 40px #ff3f4e, 0 0 50px #ff3f4e, 0 0 60px #ff3f4e, 0 0 70px #ff3f4e, 0 0 80px #ff3f4e;
    }
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nft-info {
    text-align: center;
}

.nft-cost {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #e91e63;
}

.nft-cost span {
    font-weight: bold;
    color: #ff3f4e;
}

button {
    padding: 15px 30px;
    margin: 20px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#connect-button {
    background-color: #ff3f4e;
    color: #f1f1f1;
}

#connect-button:hover {
    background-color: #e91e63;
}

#mint-button {
    background-color: #4caf50;
    color: #f1f1f1;
}

#mint-button:hover {
    background-color: #45a049;
}

footer {
    background-color: #333;
    padding: 10px;
    text-align: center;
    color: #f1f1f1;
}

footer a {
    color: #e91e63;
    text-decoration: none;
}

footer a:hover {
    color: #ff3f4e;
}
