body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0,0.6)), url('./public/image.jpg');
    background-size: cover; /* 画像をカバーする */
    background-position: center; /* 画像の位置を中央に */
    color: #333;
    line-height: 1.6;
}

p {
    color: white;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

h1 {
    color: white;
    margin: 0;
}

h2 {
    color: white;
    margin-top: 40px;
}

.button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

#walletButton {
    background-color: #4CAF50;
    color: white;
}

#walletButton:hover {
    background-color: #45a049;
}

.mint-button {
    background-color: #008CBA;
    color: white;
    margin-top: 20px;
}

.mint-button:hover {
    background-color: #007B9A;
}

.hidden {
    display: none;
}

.next-button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#nextButton {
    background-color: #FFA500;
    color: white;
}

#nextButton:hover {
    background-color: #FF8C00;
}


.container_hidden {
    display: none;
}

#accountInfo {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
}

#amountPreview {
    margin-top: 40px;
    text-align: center;
}
.address-box {
    width: 100%;
    text-align: center;
}
#address-container img {
    width: 50%;
}

#nftPreview {
    margin-top: 40px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#nftPreview img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

#address-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.address-box {
    flex-basis: 48%;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.address-box h4 {
    color: white;
    margin-top: 0;
}

.address-box p {
    word-break: break-all;
}
