/* default style */
* {
    margin: 0;
    padding: 0;
    border-style: border-box;
}

body {
    font-size: 14px;
    background-color: #7FD6C2;
    max-width: 100%;
    font-family: 'Poppins', sans-serif;
}

/* Navigation bar */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 10px auto 21px;
    height: 45px;
}

/* search-bar - Nav */
.search-inp, .search-btn {
    border-style: none;
    border-color: #7FD6C2;
}

.search-inp {
    align-items: center;
    padding: 5px 10px 5px 10px;
    border-radius: 20px;
    width: 250px;
}

.search-btn {
    padding: 5px 10px 5px 10px;
    font-size: 14px;
}

.search-inp:hover {
    border-style: solid;
    border-bottom-color: #333;
}

/* login-post-button - Nav */
.login-post-btn {
    display: flex;
    width: 250px;
    align-items: center;
    justify-content: center;
}

.login-btn, .post-btn {
    font-size: 14px;
    font-weight: 700;
    background-color: white;
    color: black;
    width: 95px;
    height: 20px;
    text-align: center;
    border-radius: 5px;
}

.login-btn {
    margin-right: 15px;
}


.login-btn:hover, .post-btn:hover {
    transform: scale(0.95);
    cursor: pointer;
    transition: all 0.4s ease;
}



/* Intro section */
.intro {
    display: flex;
    height: 56vh;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in;
}

.intro .text {
    margin-right: 75px;
    width: 650px;
    text-align: center;
}

.intro .text .text-out{
    font-size: 48px;
    font-weight: 700;
    line-height: 0.95;
}

.intro .text .text-inside {
    font-size: 15px;
}

/* Notices Section */
.notices {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 98.9vw;
    height: 100vh;
    background-color: #D1EDE7;
    margin-top: 15px;
    transition: all 0.4s ease-in;
}

/* heading - post form */
.notices li{
    text-decoration:none;
    width: 78.9vw;
    background-color: white;
}

/* post content (text) - post form */
.notices h3{
    background-color: white;
}

/* tags - post Form */
.notices h5{
    background-color: white;
    margin-bottom: 15px;
}

/* Post Forms - Notices Section */
.postForm {
    background-color: white;
}

.postForm li {
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px;
}

.postForm h3 {
    font-size: 19px;
}

.postForm h5 {
    font-size: 15px;
}

/* Footer Section */
footer {
    background-color: #333;
    color:whitesmoke;
}

.icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.icons p{
    display: flex;
    justify-content: center;
    width: 307px;
}

.social-icon{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 200px;
    height: 40px;
}

.social-icon a i{
    color: whitesmoke;
    font-size: 14px;
}

.social-icon a i:hover{
    scale: 0.9;
    transition: all 0.4s ease;
    color:#7FD6C2;
}

footer .container {
    display: flex;
    align-items: center;
    height: 170px;
    justify-content: space-evenly;    
}

footer .container .com-name {
    width: 180px;
}

#title {
    line-height: 35px;
}

.com-name #title{
    font-size: 19px;
}

.lists #title{
    font-size: 19px;
}

.lists ul li{
    list-style: none;
    line-height: 25px;
}


.copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.copyright a{
    font-weight: 700;
}

.copyright a:hover {
    color: #7FD6C2;
    scale: 0.95;
    transition: all 0.4s ease;
}

/* default elements style */
input { 
    background-color: white;
}

button {
    border-style: none;
}

a {
    text-decoration: none;
    color: whitesmoke;
}

hr {
    /* color: grey; */
    background-color: grey;
}