
body {
    margin: 0;
    color: white;
    direction: rtl;
}
body,button,input {
    font-family: "Cairo", sans-serif;
}

#main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #AF8260;
    flex-direction: column;
    height:auto;
    padding-bottom: 15rem;
}
#main-title {
    font-size: 100px;
    margin: 0;
}
#main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(217, 217, 217);
    height: 200px;
    width: 700px;
    padding: 15px;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 15px rgb(0, 0, 0, 0.3);
}
#word-input {
    width: 500px;
    height: 50px;
    border: none;
    border-radius: 100px;
    padding: 0 20px;
}
#submit-btn {
    height: 50px;
    border: none;
    border-radius: 100px;
    margin: 0 10px;
    width: 160px;
    background-color: black;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}
#submit-button:hover {
    background-color: #1f1b1b;
}
#reply-content {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    background-color: rgb(217, 217, 217);
    color: black;
    /*min-height: 400px;*/
    width: 700px;
    padding: 15px;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 15px rgb(0, 0, 0, 0.3);
    /*max-height: 2000px;*/
    /*height: 1000px;*/
}





/* HTML: <div class="loader"></div> */
#loading {
    width: fit-content;
    font-weight: bold;
    font-family: monospace;
    white-space: pre;
    font-size: 30px;
    line-height: 1.2em;
    height:1.2em;
    overflow: hidden;
    margin-top: 2rem;
}
#loading:before {
    content:"Loading...\A⌰oading...\A⌰⍜ading...\A⌰⍜⏃ding...\A⌰⍜⏃⎅ing...\A⌰⍜⏃⎅⟟ng...\A⌰⍜⏃⎅⟟⋏g...\A⌰⍜⏃⎅⟟⋏☌...\A⌰⍜⏃⎅⟟⋏☌⟒..\A⌰⍜⏃⎅⟟⋏☌⟒⏁.\A⌰⍜⏃⎅⟟⋏☌⟒⏁⋔";
    white-space: pre;
    display: inline-block;
    animation: l39 1s infinite steps(11) alternate;
}

@keyframes l39 {
    100%{transform: translateY(-100%)}
}




/* HTML: <div class="loader"></div> */
.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
}
.loader::before,
.loader::after {
    content:"";
    grid-area: 1/1;
    --c:no-repeat radial-gradient(farthest-side,#25b09b 92%,#0000);
    background:
            var(--c) 50%  0,
            var(--c) 50%  100%,
            var(--c) 100% 50%,
            var(--c) 0    50%;
    background-size: 12px 12px;
    animation: l12 1s infinite;
}
.loader::before {
    margin: 4px;
    filter: hue-rotate(45deg);
    background-size: 8px 8px;
    animation-timing-function: linear
}

@keyframes l12 {
    100%{transform: rotate(.5turn)}
}