body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1c1c1c;
    color: #d3d3d3;
}

header {
    background-color: #333;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 1em 0;
}

main {
    padding: 20px;
}

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

#airdrops-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.grid-33 {
    width: 100%; /* Full width for mobile */
    box-sizing: border-box; /* Ensure padding is included in width */
    margin-bottom: 20px;
    text-decoration: none; /* Ensure links have no underline */
    color: inherit; /* Ensure link color is inherited */
    transition: transform 0.3s ease; /* Add transition for smooth zoom */
}

.grid-33:hover {
    transform: scale(1.05); /* Add zoom effect */
}

.grid-33:hover .inside-article {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add hover effect */
}

.inside-article {
    background-color: #000000; /* White background color */
    border: 1px solid #000000; /* Light gray border */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 20px; /* Add padding to the inside article */
}

.air-thumbnail {
    display: flex;
    align-items: center; /* Align items vertically centered */
    margin-bottom: 10px;
}

.air-thumbnail img {
    border-radius: 50%; /* Make the logo round */
    width: 80px; /* Adjust size as needed */
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
}

.air-content-front {
    flex: 1;
}

.air-content-front h3 {
    margin-top: 0;
    font-size: 1.2em;
    color: #ffffff; /* Dark text color */
}

.air-content-front p {
    margin: 0;
    color: #007bff; /* Blue text color for category */
}

.droptemp {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff0000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
}

.est-value {
    margin-top: 10px;
    font-size: 0.9em;
    color: #ffffff;
}

.air-buttons {
    margin-top: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0056b3;
}

/* Media Queries for Responsiveness */
@media (min-width: 600px) {
    .grid-33 {
        width: 48%; /* 2 items per row for tablets */
    }
}

@media (min-width: 768px) {
    .grid-33 {
        width: 31%; /* 3 items per row for small desktops */
    }
}

@media (min-width: 992px) {
    .grid-33 {
        width: 24%; /* 4 items per row for larger desktops */
    }
}
