@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: #454545;
}

/* 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;
    width: 80vw;
    margin: auto;
    margin-top: -10vh;
    text-align: center;
}

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

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

.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 */
  }

body {
    background-color: #F9E17E;
}

#show-activity-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;
}

#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: #454545;
    margin: 0;
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}