
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

#banner {
    text-align: center;
    background-color: #fff;
}

.banner-img {
    width: 100%;
    height: auto;
}

header {
    background-color: #6b4f2d; /* Brown color for gross look */
    color: #fff;
    padding: 60px 40px;
    text-align: center;
}

header .coin-logo {
    width: 250px;
    margin-bottom: 20px;
}

h1.main-heading {
    font-size: 55px;
    font-weight: bold;
    margin-top: 20px;
    color: #f5a623;
}

p.sub-heading {
    font-size: 24px;
    font-weight: 300;
    margin-top: 10px;
}

button.cta-btn {
    background-color: #b18f6a;
    color: white;
    font-size: 22px;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    margin-top: 30px;
    border-radius: 5px;
}

button.cta-btn:hover {
    background-color: #a07858;
}

.content-section {
    margin: 40px 20px;
    padding: 30px;
    background-color: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-heading {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: #333;
}

.tokenomics-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tokenomics-img {
    width: 250px; /* Resized images */
    height: 250px; /* Ensure images are 250px x 250px */
    margin: 10px;
}

.float-left {
    float: left;
    margin-right: 15px;
}

.float-right {
    float: right;
    margin-left: 15px;
}

.feature-img {
    width: 250px; /* Resized images */
    height: 250px; /* Ensure images are 250px x 250px */
    margin: 10px;
    display: inline-block;
    vertical-align: middle;
}

.meme-generator {
    margin-top: 20px;
    text-align: center;
}

.meme-output {
    text-align: center;
    margin-top: 20px;
}

.tokenomics-text {
    font-size: 20px;
    font-weight: 300;
    margin-top: 15px;
}

.tokenomics-text.larger-text {
    font-size: 28px;
    font-weight: bold;
    color: #e75d4d;
}

footer {
    background-color: #6b4f2d;
    color: white;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #b18f6a;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
    