body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Varela Round', sans-serif;
}

.logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo-link:hover {
    transform: scale(1.05);
}

img {
    max-width: 200px;
    margin-bottom: 20px;
    transform: rotate(270deg);
}

.typing-container {
    height: 24px;
    margin: 10px 0;
}

.typing-text {
    border-right: 2px solid black;
    padding-right: 5px;
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: black; }
}

.button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.3s;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out 2.5s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.button:hover {
    opacity: 0.7;
}

.x-button {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 8px 15px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.x-button:hover {
    background-color: #333;
}

.x-logo {
    display: inline-block;
    vertical-align: middle;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 30px;
    border-radius: 10px;
    width: 50%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"], 
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: 'Varela Round', sans-serif;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.submit-btn:disabled {
    background-color: #666;
    cursor: not-allowed;
}

.success-message {
    display: none;
    text-align: center;
    color: green;
    margin-top: 20px;
}

.footer {
    position: fixed;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-text {
    color: #000;
}

.x-link {
    color: #000;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
}

.x-link:hover {
    opacity: 0.7;
}

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-submit-wrapper {
    display: flex;
    align-items: center;
}
