* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Helvetica;
    color: #2d2d2d;
    background: linear-gradient(120deg, #FFC300, #FF5733);
    background-repeat: no-repeat;
}

.tAddress p span{
    font-size: 17px;
    
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    font-size: 20px;
}

.header nav a {
    color: black;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

.header .buy-now {
    background-color: rgb(190, 75, 7);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* Main Section */
.main {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 40px 10%;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.text-content {
    max-width: 500px;
}

.text-content h1 {
    font-size: 68px;
    color: rgb(190, 75, 7);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 5%;
}

.text-content p {
    font-size: 18px;
    color: #3c3c3c;
    margin: 15px 0;
    font-weight: bolder;
    margin-bottom: 10%;
}

.text-content .token-address {
    background-color: #f7f7f7;
    border: 1px solid #d1d1d1;
    padding: 10px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    font-size: 16px;
}

.buttons {
    margin-top: 20px;
}

.buttons .btn {
    background-color: rgb(190, 75, 7);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    margin-right: 10px;
    cursor: pointer;
    text-decoration: none;
}

/* Panda Image */
.panda-image {
    max-width: 600px;
    width: 100%;
}

.about {
    font-size: 14px;
    text-align: center;
}

.about h1 {
    font-size: 40px;
    color: rgb(190, 75, 7);
    margin-bottom: 3%;
}

.about h3 {
    color: black;
    font-size: 18px;
    margin-bottom: 3%;
}

h1 {
    text-align: center;
    margin-bottom: 3%;
    color: rgb(190, 75, 7);
}

.layout-container {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
}

/* Section for each image */
.image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 48%;
    text-align: center;
}

/* Styling for images */
.image-section img {
    width: 100%;
    max-width: 370px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Styling for image descriptions */
.image-caption {
    margin-top: 10px;
    font-size: 23px;
    color: black;
}

.disclamer h2 {
    text-align: center;
    color: black;
    font-size: 18px;
    margin-bottom: 3%;
}

.disclamer h1 {
    text-align: center;
    margin-bottom: 2%;
    margin-top: 3%;
    color: rgb(190, 75, 7);
    font-size: 28px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* Stack header elements for smaller screens */
    .header {
        flex-direction: column;
        text-align: center;
    }

    .header nav a {
        margin-left: 0;
        margin-top: 10px;
    }

    /* Stack main section */
    .main {
        flex-direction: column;
        padding: 20px;
    }

    .text-content h1 {
        font-size: 48px;
    }

    .layout-container {
        justify-content: center;
    }

    /* Stack items in the grid */
    .image-section {
        width: 100%;
    }
}

@media (max-width: 480px) {

    .header a{
        font-size: 18px;
    }

    .logo{
        display: none;
    }

    .buy-now{
        margin-top: 20px;
    }
    .text-content h1 {
        font-size: 36px;
    }

    .text-content p {
        font-size: 16px;
        text-align: center;
    }

    .buttons .btn {
        padding: 10px 15px;
        font-size: 14px;
    }

    .about h1, h1 {
        font-size: 30px;
    }

    .image-caption {
        font-size: 18px;
    }
    .disclamer{
        margin-bottom: 30px;
    }

    .disclamer h2{
        font-size: 15px;
    }

    .panda-image{
        margin-bottom: -40px;
    }

    .buttons{
        text-align: center;
    }

    .tAddress p span{
        font-size: 13px;
    }
}
