/* TODO: 보기 좋은 나만의 아고라 스테이츠를 위해서 CSS를 수정하세요. */
body{
    background-color: #2A2F4F;
}
main{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 150px;
    
}
.top_bar{
    height: 50px;
    width: 1560px;
    background-color: rgb(143, 143, 142);
    display: flex;
    flex-direction: row;
    border-radius: 15px 15px 0px 0px;
    
}

.input_Console {
    height: 25px;
    width: 1300px;
    margin-top: 12px;
    margin-left: 30px;
    border-radius: 20px;
    border: 0;
    background-color: aliceblue;
}

.top_bar>ul {
    display: flex;
    flex-direction: row;
    gap: 20px;
    list-style:none;
}

.a,.b,.c{
    height: 20px;
    width: 20px;
    background-color: rgb(111, 111, 112);
    border-radius: 10px;
}
.a{background-color: red;}
.b{background-color: gray;}
.c{background-color: green;}
.main_page {
    display: flex;
    flex-direction: row;
}
.first_section {
    height: 1000px;
    width: 280px;
    background-color: #C7E9B0;
    padding: 20px;
    text-align: center;
    
}

.second_section {
    height: 1000px;
    width: 1200px;
    background-color: rgb(255, 255, 255);
    padding: 20px;

    display: flex;
    flex-direction: column;
}

.main_title {
    font-family:cursive;
    font-size: 40px;
}

.form__container {
    display: flex;
    flex-direction: column;
    text-align: start;
    padding: 20px;
    font-family:cursive;
    font-size: 30px;
    margin-left: 20px;
}

input {
    background-color: white;
    
    margin-top: 10px;
    height: 20px;
    width: 200px;
    border-radius: 5px;
}

textarea {
    background-color: white;
    margin-top: 10px;
    padding-top: 20px;
    width: 200px;
    border-radius: 5px;
}

.form__submit {
    text-align: start;
    display: flex;
    flex-direction: column;
}

.submit {
    height: 50px;
    width: 210px;
    font-size: 20px;
    font-family:cursive;
    border-radius: 5px;
}

.img {
    margin-top: 20px;
    height: 1000px;
    width: 210px;
    align-items: end;

}
.img>img{
  
    height: 50px;
    width: 150px;

}

.inner_top_bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0px 20px 0px 20px;
    font-family:cursive;
    font-size: 20px;
}

.line_bar {
    border: 1px solid #818383;
    width: 1200px;
    height: 0px;
}

img{
    border-radius: 50px;
    margin-top: 20px;
    margin-left: 20px;
    height: 64px;
    width: 64px;
}

ul {
    list-style: none;
}
.discussion__wrapper{
    width: 1200px;
    height: 900px;
    /* background-color: #C7E9B0; */
    display: flex;
    justify-content: center;
    
}
.discussions__container{
    width: 1000px;
    height: 800px;
    background-color: #2A2F4F;
    padding: 20px;
    margin: 50px;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}


.discussion__container {
    display: flex;
    flex-direction: row;
    height: 120px;
    width: 930px;
    border-radius: 15px;
    background-color: azure;
    margin: 20px;
    padding-right: 15px;
}

.discussion__content {
    padding-top: 10px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 12px;
    flex: 6;
}

.discussion__avatar--wrapper {
    flex: 1;
}
.discussion__answered{
    flex: 1;
    text-align: center;
    margin-top: 10px;
    font-size: 30px;
}

nav {
    display: flex;
    justify-content: center;
}
        
.pagination {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    column-gap: 2px;
  }
        
.pagination li {
    margin: 0 1px;
}

button {
    background-color: transparent;
    border: none;
    font-size: 30px;
}

