img {
    width: 100%; /* Adjust the width as needed to fit your layout */
    display: block; /* This ensures the images don't have any extra spacing */
    margin: 0; /* Remove any margins to ensure no extra space */
}


#content-section {
    max-width: 100%;
    margin: auto;
    padding-top: 70px;
}

h1 {
    font-size: 40px; /* You can adjust the size as needed */
    color: #000000;
    margin-left: 10px;
}

h3{
    font-size: 40px;
  
}

#animated-text {
    animation: bounce 2s infinite; /* Apply the 'bounce' animation with a 2-second duration, infinitely */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0); /* Initial and final position */
    }
    40% {
        transform: translateY(-10px); /* Bounce upwards */
    }
    60% {
        transform: translateY(-5px); /* Bounce downwards */
    }
}


@keyframes attentionAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0); /* Bounce at the start and end */
    }
    40% {
        transform: translateY(-20px); /* Bounce upwards at 40% keyframe */
    }
    60% {
        transform: translateY(-10px); /* Bounce upwards at 60% keyframe */
    }
}



body {
    background: #D3EEF4;
    color: black;
    max-width: 100%;
    font-family: 'Poor Story', cursive;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.button-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align the content horizontally */
    justify-content: center; /* Center align the content vertically */
    margin: 10px;
}

.button-container button {
    margin-top: 10px;
}

.image-container {
    display: inline-block;
    margin: 10px;
    text-align: center;
}

@media (max-width: 1000px) {
    .image-container {
        display: block;
    }

    .button-container button {
        margin-top: 10px;
    }
}


/* Styling for the "JOIN THE TRIBE" button */
#join-button {
    background-color: #089C86; /* Background color */
    color: #ffffff; /* Text color */
    padding: 10px 20px; /* Adjust padding as needed */
    border: none;
    border-radius: 5px; /* Add rounded corners */
    font-size: 30px; /* Adjust font size as needed */
}


#join-button:hover {
    background-color: #F7ED49; /* New background color on hover */
    color: #000000; /* New text color on hover */
}


/* Styling for the "Click Here" button with the "button-primary" class */
.button-primary {
    background-color: #F7ED49; /* Background color for the first button */
    color: black; /* Text color for the first button */
    padding: 10px 10px;
    border: none;
    border-radius: 5px;
    font-size: 30px;
 
}

.button-primary.button-primary:hover {
    background-color: #089C86; /* New background color on hover */
    color: #ffffff; /* New text color on hover */
    align-items: center;
}

.image-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align the content horizontally */
    justify-content: center; /* Center align the content vertically */
    margin: 10px;
    text-align: center; /* Center align the content within the container */
}

.button-container {
    margin-top: 10px; /* Add space between the images and buttons */
}



/* Styling for the "Click Here" button with the "button-secondary" class */
.button-secondary {
    background-color: #F7ED49; /* Background color for the second button */
    color: rgb(0, 0, 0); /* Text color for the second button */
    padding: 10px 10px;
    border: none;
    border-radius: 5px;
    font-size: 30px;
    

}


.button-secondary:hover {
    background-color: #089C86; /* New background color on hover */
    color: #ffffff; /* New text color on hover */
}


.site-footer {
    background-color: #d3eef4;
    text-align: center;
    bottom: 0 ;
    width: 100%;
}

#animated-text {
    animation: bounce 2s infinite; /* Apply the 'bounce' animation with a 2-second duration, infinitely */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0); /* Initial and final position */
    }
    40% {
        transform: translateY(-10px); /* Bounce upwards */
    }
    60% {
        transform: translateY(-5px); /* Bounce downwards */
    }
}










