body {
    font-family: 'Poppins', sans-serif;
    margin: 0 auto;
    padding: 0;
    color: #333;
    /* Dark grey for text */
    background-color: #f4f4f4;
    max-width: 1000px;
}


header {
    text-align: center;
    padding: 40px 20px;
    /* Increased padding */
}

.logo {
    max-width: 150px;
    /* Adjust logo width as needed */
}

h1 {
    font-size: 2.8em;
    font-weight: 600;
    /* Semi-bold heading */
    text-align: center;
    margin-bottom: 25px;
    color: #228b22;
    /* Darker blue-gray heading color */
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

a {
    color: #228b22;
    /* Muted gray for quotes */
    text-decoration: none;
}

a {
    transition: color 0.3s ease;
    /* Smooth color transition on hover */
}

footer a:hover {
    text-decoration: underline;
}


main a {
    color: #228b22;
}

main a:hover {
    text-decoration: underline;
}



hr {
    margin: 50px 0;
    border: 0;
    border-top: 1px solid #000;
    /* Subtle gray line */
}

body {
    padding: 0 20px;
}

/* Responsive Design (adjust as needed) */
@media (max-width: 768px) {

    h1 {
        font-size: 2.2em;
    }

    p {
        font-size: 1.1em;
    }

    .quote {
        font-size: 1.4em;
    }
}


footer {
    background-color: #333;
    /* Dark grey for footer */
    color: #fff;
    /* White text for footer */
    padding: 20px;
    text-align: center;
    border-radius: 10px 10px 0 0;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 0 0 10px;
}


@media (max-width: 800px) {
    footer {
        display: flex;
        flex-direction: column;
    }
}

@media (min-width: 801px) {
    footer a+a:before {
        content: '|';
        margin-right: 10px;
    }
}


.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0 20px 80px 20px;
    flex-wrap: wrap;
}

.cta-buttons a {
    transition: transform 0.2s;
    /* Add filter transition */
}

.cta-intro {
    text-align: center;
    margin-bottom: 20px;
    /* Space between text and buttons */
    padding: 0 20px;
}

.cta-intro p {
    font-size: 1.1em;
    /* Adjust font size as needed */
    color: #555;
    /* Adjust color as needed */
}


@media (hover: hover) and (pointer: fine) {
    .cta-buttons a:hover {
        transform: scale(1.1);
    }

    .page-link:hover {
        background-color: #e9ecef;
        /* Change background color on hover */
        border-color: #ced4da;
        /* Change border color on hover */
        text-decoration: none;
    }

}


#download {
    text-align: center;
    padding: 20px;
}

.download-columns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* Allow wrapping onto a new line */
}

.download-columns .column {
    width: 45%;
    /* Adjust as needed */
    text-align: center;
    padding: 10px;
}

.download-columns img {
    max-width: 300px;
    /* Adjust image size */
    margin: 10px 0;
}

/* Media query for smaller screens */
@media (max-width: 540px) {

    /* Adjust breakpoint as needed */
    .download-columns .column {
        width: 100%;
        /* Make columns full-width */
    }
}

#how-to {
    text-align: center;
}

#how-to .step {
    padding: 20px;
    max-width: 500px;
    margin: 20px auto;
}

.step i{
    position: relative;
    top: -20px;
    font-size: 1em;
}

#event-details {
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 20px;
    background-color: #fff;
}

#event-details h2 {
    text-align: center;
}

#event-details p {
    font-size: initial;
}



.screenshot-container {
    position: relative;
    display: inline-block;
}


#how-to .step img {
    vertical-align: top;
    width: 414px;
    border: 0;
}

#pulse1{
    top: 133px;
    left: 207px;
}
#pulse2{
    top: 89px;
    left: 352px;
}

.pulse-circle {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid rgba(255, 0, 0, 0.7);
    animation: pulse 2s infinite ease-in-out;
    pointer-events: none;
    transform-origin: center;
}

@media (max-width: 500px) {
    #how-to .step img {
        width: 280px;
    }
    #pulse1{
        top: 91px;
        left: 139px;
        width: 50px;
        height: 50px;
    }
    #pulse2{
        top: 60px;
        left: 237px;
        width: 50px;
        height: 50px;
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        /* Increase size */
        opacity: 0;
        /* Fade out */
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.typing-text{
    position: absolute;
    top: 114px;
    left: 66px;
    width: 270px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 4px;
    text-align: left;
    border: 4px solid rgba(255, 0, 0, 0.7);
}

#header-title{
    position: absolute;
    top: 74px;
    left: 128px;
    width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
    text-align: left;
}

@media (max-width: 500px) {
    #header-title{
        font-size: 14px;
        top: 48px;
        left: 86px;
        width: 131px;
    }
    .typing-text{
        top: 74px;
        font-size: 13px;
        left: 43px;
        width: 177px;
    }
}

#about div{
    white-space: pre-line;
}
#about img{
    max-width: 256px;
    width: 100%;
    vertical-align: top;
    margin-bottom: 10px;
}


.summary{
    font-size: 13px;
    line-height: 18px;
}