body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 20px;
    background-color: #060710;
}

h1 {
    font-size: 70px;
    color: #fafafa;
}

h2 {
    color: #fafafa;
    font-size: 1.0em;
}

.description {
    width: 80%;
    text-align: center;
    margin-top: -20px;
    color: #ffffff;
}

.connect-div {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.connect-button-container {
    display: flex;
    gap: 10px; /* Adjust gap as needed */
}

.connect-div button { /* Targeting buttons directly within .connect-div */
    padding: 10px 20px;
    font-size: 1.2em;
    cursor: pointer;
    background-image: linear-gradient(to right, #1c54a6 5px, #0e0f21 5px);
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-align: center;
    text-decoration: none; /* If you had any */
    animation: slowBlink 3s infinite alternate; /* Added slow blinking animation */
}

.connect-div button:hover {
    background-color: #5E9DE6;
    animation-play-state: paused; /* Optional: Stop blinking on hover */
}

.logo {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
}

img {
    width: 1000px;
    height: 300px;
    object-fit: cover;
}

.qs {
    margin-top: 150px;
    color: #1c54a6;
    font-size: 2.5em;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin-top: -20px;
    margin-bottom: 50px;
}

.issue-button {
    width: 400px;
    height: 200px;
    padding: 15px 25px;
    font-size: 20px;
    cursor: pointer;
    background-image: linear-gradient(to right, #1c54a6 20px, #0e0f21 20px);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-direction: row;
    font-size: 1.7em;
    padding-left: calc(400px * 0.20);
    box-sizing: border-box;
    text-align: center;
    justify-content: center;
}

.issue-button i {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.distribution-heading {
    text-align: center;
    margin-bottom: 20px;
}

.distribution-stats {
    display: flex;
    justify-content: center;
    width: 95%;
    gap: 20px;
    margin-bottom: 20px;
}

.distribution-stats span {
    font-size: 1.1em;
    color: #ccc;
}

.resolve-note {
    text-align: center;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.resolve-note-button-container {
    margin-top: 10px;
}

.get-started-button {
    display: inline-block;
    padding: 10px 20px;
    background-color:  #1c54a6;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
}

.action-area {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons span {
    color: #ccc;
    font-size: 1.5em;
    margin: 0 15px;
}

.social-icons a {
    color: #ccc;
    font-size: 1.5em;
    margin: 0 15px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #f0f0f0;
}

/* Styles for Footer */
footer {
    color: #f0f0f0;
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
    margin-top: 30px;
}

footer a {
    color: #f0f0f0;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

#coinmarketcap-widget-marquee {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    margin-bottom: 10px;
}

/* Keyframes for slow blinking animation */
@keyframes slowBlink {
    0% { opacity: 1; }
    50% { opacity: 0.7; } /* Adjust opacity for desired intensity */
    100% { opacity: 1; }
}

/* Media Queries for iPhones and similar phones */
@media (max-width: 480px) {
    body {
        background-color: #060710;
    }
    h1 {
        text-align: center;
        font-size: 2.7em;
        font-weight: bolder;
        color: #ffffff;
        margin-bottom: 0;
    }
    h2 {
        font-size: 1.2em;
        /* color: #1c54a6; */
    }
    .description {
        width: 98%;
        font-size: 0.85em;
    }

    .connect-div {
        flex-direction: row;
        align-items: center;
        width: 100%;
    }
    .connect-button-container {
        display: flex;
        gap: 10px;
        width: 90%;
        justify-content: center;
    }
    .connect-div button {
        width: 40%;
        padding: 15px;
        font-size: 0.9em;
        text-align: center;
        display: inline-block;
        background-image: linear-gradient(to right, #1c54a6 4px, #0e0f21 4px);
        box-sizing: border-box;
        animation: slowBlinkMobile 3s infinite alternate; /* Apply slow blink on mobile */
    }
    @keyframes slowBlinkMobile {
        0% { opacity: 1; }
        50% { opacity: 0.7; }
        100% { opacity: 1; }
    }
    img {
        margin-top: 15px;
        height: 200px;
        width: 95%;
    }

    .qs {
    margin-top: 40px;
    color: #1c54a6;
    font-size: 1.3em;

    }
    .button-container {
        flex-direction: column;
        align-items: center; 
        margin-top: -10px;
    }
    .issue-button {
        width: 95%;
        height: 80px;
        background-image: linear-gradient(to right, #1c54a6 8px, #0e0f21 8px);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        padding: 10px;
        box-sizing: border-box;
        display: grid;
        grid-template-columns: 10px auto;
    }

    .issue-button > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .issue-button i {
        margin-bottom: 0.5em;
        font-size: 0.8em;
    }
    .issue-button span {
        font-size: 0.6em;
        white-space: nowrap;
    }
}

/* Media Queries for slightly larger phones such as pro max models */
@media (min-width: 481px) and (max-width: 767px){
    .issue-button{
        width: 45%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        background-image: linear-gradient(to right, #4A90E2 20%, #1b2731 20%);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        padding-left: calc(45% * 0.20);
        box-sizing: border-box;
        text-align: center;
    }

    .issue-button i {
        font-size: 1.8em;
        margin-bottom: 0.5em;
        margin-right: 0;
    }
    h1 {
        font-size: 5em;
    }
    .connect-button-container {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    .connect-div button {
        padding: 18px 35px;
        font-size: 1.1em;
        animation: slowBlinkTablet 3s infinite alternate; /* Apply slow blink on tablet-sized phones */
    }
    @keyframes slowBlinkTablet {
        0% { opacity: 1; }
        50% { opacity: 0.7; }
        100% { opacity: 1; }
    }
}