@font-face {
    font-family: 'BebasNeue';
    src: url('fonts/BebasNeue-Regular.ttf');
  }

@font-face {
    font-family: 'Play';
    src: url('fonts/Play-Regular.ttf');
  }

@font-face {
    font-family: 'WixMadeForText';
    src: url('fonts/WixMadeForText.ttf');
  }

body {
    font-family: 'WixMadeForText';
    background-color: #1a1a1a;
    color: #fff;
    margin: 0;
    padding: 0;
}
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}
header {
    background: #000000;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #0065a8 3px solid;
}
header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}
.main {
    padding: 15px;
}
h1, h2, h3 {
    margin-bottom:1rem;
    text-align: center;
    
}
.image-placeholder {
    background-color: #444;
    width: 100%;
    height: 300px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

p {
    font-size: 1.5rem;
  }

.title {
    font-family: 'BebasNeue';
    float:left; 
    font-size:8rem; 
    color:rgb(228, 228, 228)
}

.discord-button {
    display: inline-block;
    background-color: #5865F2; /* Discord's brand color */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.discord-button:hover {
    background-color: #4e5cd8; /* Slightly darker shade on hover */
}

.center-iters {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }

.center-nebula {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }

.buy-button {
    background-color: #2081E2; /* OpenSea's brand color */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.buy-button:hover {
    background-color: #1868b7; /* Darker shade for hover effect */
    transform: scale(1.05); /* Slightly increase the size on hover */
}

.buy-button:active {
    transform: scale(0.95); /* Slightly decrease the size on click */
}



.card-container {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping of cards if they don't fit in one row */
    gap: 20px; /* Space between cards */
    justify-content: center; /* Center the cards horizontally */
}

.image-card {
    width: 220px; /* Adjust width as needed */
    text-align: center;
}

.image-card img {
    width: 100%; /* Makes image fill the card */
    height: auto; /* Keeps the aspect ratio of the image */
    border-radius: 10px; /* Optional: Adds rounded corners to the image */
}