@import url('https://fonts.googleapis.com/css2?family=Yuji+Hentaigana+Akebono&display=swap');


body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    padding: 10px;
}

.container {
    width: 100%;
    max-width: 600px;
}

textarea {
    width: 100%;
    margin-bottom: 20px;
}

table {
    margin-bottom: 20px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
}

.text-container {
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

.text-input-container, .colored-text-container {
    height: 150px;
    width: 100%; 
    overflow: auto; 
    background-color: white;
    margin-bottom: 20px;
    padding: 10px; 
    box-sizing: border-box;
    border: 1px solid #ccc;
}

.text-input-container textarea {
    width: 100%;
    height: 100%;
    box-sizing: border-box; 
    margin: 0;
    border: none; 
    resize: none;
}

.colored-text-container pre {
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.selectors-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 12px; /* ou toute autre taille que vous souhaitez */
    color: grey; /* ou toute autre couleur que vous souhaitez */
}

a:link {
    color: black;
}

a:visited {
    color: grey;
}

.small-grey {
    font-size: small;
    color: grey;
}

.background-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	font-family: 'Yuji+Hentaigana+Akebono', sans-serif;
    font-size: 50vw;  /* Adjust this size based on your needs */
    color: rgba(200,200,200,0.2);  /* Adjust this color based on your needs */
    z-index: -1;
    writing-mode: vertical-rl;
    text-orientation: upright;
}
