* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styling for mobile devices */
body {
    font-family: Arial, sans-serif;
    background-color: rgba(9, 9, 12, 1);
    color: #333;
    text-align: center;
    justify-content: center;
    padding: 20px;
}

.top-image-container {
    display: flex;
    flex-direction: column;
    width: 100vw;
    position: fixed;
    top: 5vh;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.top-image {     
    height: auto;
    max-height: 25vh;
    min-height: 150px;
    max-width: 35vw;
    width: auto;
    object-fit: contain;
    display: block;
}

.support-text-block {
    text-align: center;
    color: white;
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 600;
    line-height: 1.6;
    padding: 0 20px;
    max-width: 90%;
}

.support-text-block p {
    margin: 0;
    padding: 0;
}
