@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/text.ttf') format('truetype');
}

.activity_text {
    font-family: 'CustomFont', Arial, sans-serif;
    font-size: 4vw;
    /* Using viewport width as a relative unit */
    color: #FFFFFF;
}

.punchline_text {
    font-family: 'CustomFont', Arial, sans-serif;
    font-size: 4vw;
    /* Using viewport width as a relative unit */
    color: #FF5858;
}

.product-hunt-badge {
    position: fixed;
    right: 20px; /* Adjust the space from the right screen edge */
    bottom: 20px; /* Adjust the space from the bottom screen edge */
    z-index: 1000; /* Ensure it stays above other content */
  }


/* Media query for smaller screens */
@media (max-width: 768px) {
    .activity_text {
        font-size: 6vw;
        /* Adjust the font size for smaller screens */
    }
}

#text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: auto;
    width: 80vw;
    text-align: center;
}



#social-media-icons {
    position: absolute;
    top: 10px;
    right: 10px;
}

#social-media-icons img {
    height: 30px;
    width: 30px;
    margin-left: 10px;
}

body {
    background-color: #FF5858;
}

button {
    background-color: #0074D9;
    color: white;
    border: 2px solid black;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    width: 200px; /* Adjust the width as needed */
    height: 50px; /* Adjust the height as needed */
}


button:hover {
    background-color: mediumaquamarine; /* Change the background color when hovering */
}

/* Media query for screens smaller than 600px */
@media (max-width: 600px) {
    button {
        padding: 8px 16px;
        font-size: 16px;
        width: 150px; /* Adjust the width for smaller screens */
        height: 40px; /* Adjust the height for smaller screens */
    }
}

/* Media query for screens smaller than 400px */
@media (max-width: 400px) {
    button {
        padding: 6px 12px;
        font-size: 14px;
        width: 120px; /* Adjust the width for even smaller screens */
        height: 30px; /* Adjust the height for even smaller screens */
    }
}

.button_container {
    display: flex;
    flex-direction: row;
}


#show-activity-button:hover {
    background-color: mediumaquamarine;
}

#logo-container {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: 'CustomFont', Arial, sans-serif;
}

#logo-text {
    font-size: 30px;
    color: #FFFFFF;
    margin: 0;
}

.spinner-button {
    position: relative;
    overflow: hidden;
}

.spinner-button #spinner {
    display: block;
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    /* Adjust the size as needed */
    height: 20px;
    /* Adjust the size as needed */
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.spinner-button #button-text {
    display: inline-block;
    vertical-align: middle;
    padding-right: 25px;
    /* Adjust the padding as needed */
}