* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Courier New", monospace;

}

:root {
    --main-color: rgb(15, 27, 83);
    --content-color: rgba(255, 255, 255, 0.589);
}

body {
    direction: rtl;
}

#main-container {
    background-color: var(--main-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.title #main-title {
    color: var(--content-color);
    font-size: 100px;
}

#main-content {
    background-color: var(--content-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;

    max-width: 700px;
    height: 200px;
    padding: 15px;
    margin-block: 30px;
    border-radius: 10px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3);
}

#main-content #Word_input {
    flex-grow: 1;
    max-width: 500px;
    height: 50px;
    border: 0;
    border-radius: 50px;
    padding: 0px 20px;
    outline: 0;
    font-size: 18px;

}

#submit_btn {
    height: 50px;
    border: 0;
    border-radius: 100px;
    margin: 0px 10px;
    width: 160px;
    background-color: rgb(35, 104, 252);
    color: white;
    cursor: pointer;
    font-size: 18px;
    animation: 0.2s linear background-color;
}

#submit-btn:hover {
    background-color: rgb(15, 70, 187);

}

#reply-content {
  background-color: var(--content-color);
  max-width: 700px;
  width: 100%;
  padding: 15px;
  margin-block: 30px;
  border-radius: 10px;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3);
  font-size: 25px;
  font-family: "Courier New", monospace;
  white-space: pre-wrap; 
  line-height: 1.5; 
}
@media (max-width:577px){
    #main-content > *{
        width: 100%;
    }
    .title #main-title{
        text-align: center;
        font-size:70px ;
    }
}
