body {
    background: linear-gradient(135deg, #87CEEB 0%, #98FB98 100%);
    margin: 0;
    padding: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    color: #333;
}

#cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.cardbox {
    background-color: #ffffff;
    border: 2px solid #007bff;
    border-radius: 20px;
    text-align: left;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.cardbox:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.divv {
    width: 100%;
    height: 2px;
    background-color: #007bff;
    margin: 15px 0;
    border-radius: 1px;
}

#btcimg, #ethimg, #bnbimg, #solimg, #xrpimg, #suiimg {
    display: inline;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 10px;
}

h1 {
    color: #007bff;
    font-size: 2em;
    margin-bottom: 10px;
}

p {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}