
body {
    font-family: poppins-semibold,poppins,sans-serif;
    background-color: #e6f2ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}
        .crypto-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: auto;
            background-color: #ffffff;
            padding: 20px;
        }

        .crypto-card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 20px;
            text-align: center;
            transition: transform 0.3s;
            
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribute space between elements */
    align-items: center;
        }

        .crypto-card:hover {
            transform: translateY(-5px);
        }

        .crypto-card img {
            width: 60px;
            height: 60px;
            margin-bottom: 15px;
        }

        .crypto-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: red;
        }

        .crypto-card p {
            font-size: 14px;
            color: #555;
            margin-bottom: 15px;
        }

        .crypto-card .gas-fee {
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
        }
        .crypto-card .gas-fee span {
            color : blue;
        }

        .crypto-card button {
            padding: 10px 20px;
            background-color: #4a90e2;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
            
    margin-top: 10px;
    margin-bottom: 10px; /* Sticky bottom gap */
    width: 100%;
    align-self: flex-end;
        }

        .crypto-card button:hover {
            background-color: #357ab7;
        }

        @media (max-width: 1080px) {
            .crypto-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .crypto-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .crypto-container {
                grid-template-columns: 1fr;
            }
        }
    