body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

.container {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
    justify-content: center; 
    align-items: center;
}

h1 {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 70px;
    text-align: center;
	margin-bottom: 0px;
}

h2 {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 20px;
    text-align: center;
	margin-top: 0px;
	margin-bottom: 40px;
}

form {
	max-width: 500px;
	font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 15px;
	width: 100%;
}

.form-row {
    display: flex;
    gap: 15px;
    width: 100%;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    form {
        max-width: 350px;
    }
}

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

input, select, textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    box-sizing: border-box;
}

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

button {
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
    padding: 12px;
    font-size: 16px;
    background-color: #6495ed;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background-color: #65aaee;
}

.copy-button {
    background-color: #28a745;
    margin-top: 15px;
    padding: 8px 16px;
    font-size: 14px;
}

.copy-button:hover {
    background-color: #218838;
}

#result {
	font-family: 'Montserrat', sans-serif;
    margin-top: 20px;
    font-size: 14px;
    width: 100%;
    max-width: 500px;
}

.spell-result {
    background-color: #f8f9fa;
    border: 2px solid #6495ed;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.spell-result h3 {
    color: #6495ed;
    margin-top: 0;
    font-size: 24px;
    text-align: left;
}

.spell-result p {
    margin: 8px 0;
    line-height: 1.4;
}

.spell-result strong {
    color: #333;
}

.spell-path {
    font-style: italic;
    color: #666;
    margin: 5px 0 15px 0;
    text-align: left;
}