#main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(15 27 83);
    min-height: 100vh;
    flex-direction: column;
}

body {
    margin: 0px;
    color: white;
    direction: rtl;
}

body,button,input{
    font-family: 'Cairo', sans-serif;
}

#main-title {
    font-size: 100px;
    margin: 0px;
}
@media (max-width: 800px) {
    #main-title {
        font-size: 50px;
    }
    
}

#main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(217, 217, 217);
    min-height: 200px;
    width: 700px;
    padding: 15px;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3);
}
@media (max-width: 800px){
    #main-content {
        flex-direction: column;
        height: auto;
        width: 80%;
        height: auto;
    }
}
#word-input {
    width: 500px;
    height: 50px;
    border: none;
    border-radius: 100px;
    padding: 0px 20px;
}

#submit-btn{
    height: 50px;
    border: none;
    border-radius: 100px;
    margin: 0px 10px;
    width: 160px;
    background-color: rgb(35, 104, 252);
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

#submit-btn:hover{
    background-color: rgb(11, 67, 188);
}

#reply-content {
    font-size: 25px;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(217, 217, 217);
    min-height: 800px;
    width: 700px;
    padding: 15px;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3);
}
@media (max-width: 800px){
    #reply-content {
        width: 80%;
        height: auto;
        font-size: 20px;
        min-height: 80px;
    }
#word-input{
    width: 80%;
    margin-bottom: 20px;
}
}