body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #fff;
    margin: 0;
    font-family: Arial, sans-serif;
}

#logo-container {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

#footer-container {
    margin-top: 20px;
    color: #333;
}


#submit-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

#typing-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 10px 50px 10px 10px;
    position: relative;
    width: fit-content;
    height: 50px;
}


#typing-animation {
    flex-grow: 1;
    border: none;
    padding: 12px 20px;
    min-width: 250px;
    color: #333;
    background-color: #fff;
    white-space: pre-wrap;
    overflow: hidden;
    min-height: 40px;
    align-items: center;
    padding: 0 20px;
    margin: 0;
    border-radius: 25px 0 0 25px;
    margin-right: 15px;
    line-height: 50px;
    height: 50px;
    display: block;
}

#typing-animation:empty::before {
    content: attr(data-placeholder);
    color: #aaa;
    display: block;
    margin: 0;
}

#submit-button {
    position: absolute;
    right: 10px;
    background-color: black;
    color: white;
    padding-left: 50px;
    padding: 8px;
    border: 1px solid black;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.1;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

#submit-button.enabled {
    opacity: 1;
}

#submit-button svg {
    stroke: currentColor;
}

#link-box-container {
    display: none;
    /* Set to none to make it invisible initially */
    margin-top: 20px;
    justify-content: center;
    align-items: center;
}

#link-box {
    border: 1px solid #d3d3d3;
    padding: 10px;
    margin-right: 10px;
    width: 80%;
    overflow: hidden;
}

.button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 5px;
}

.button:not(:last-child) {
    margin-right: 10px;
}

.button:active {
    background-color: #3e8e41;
}

footer {
    width: 100%;
    padding: 20px 0;
    background-color: #f8f9fa;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

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