
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@300;700&family=Open+Sans:wght@700&family=Poppins:ital,wght@0,300;1,300&family=Quicksand:wght@400;600&display=swap');





body {
    margin: 0;
    padding: 0;
    font-family: "Quicksand", sans-serif;
}

.login-body
{
    margin: 0;
    padding: 0;
    background-color:#EADCD1;
    font-family: 'Quicksand', sans-serif;
    font-size: 30px;
}

.login-title{
  text-align: center;
  color: black;
  font-size: 30px;
  font-family: 'Quicksand', sans-serif;
}

.login{
        width: 382px;
        overflow: hidden;
        margin: auto;
        margin: 20 0 0 450px;
        padding: 80px;
        background: #CDD2C4;
        border-radius: 15px ;
        font-family: 'Quicksand', sans-serif;

}
.login-h2{
    text-align: center;
    color: #277582;
    padding: 20px;
}
.login-username{
    color: black;
    font-size: 18px;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
}

.login-Password{
  color: black;
  font-size: 18px;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
}

#Username{
    width: 300px;
    height: 30px;
    border: none;
    border-radius: 3px;
    padding-left: 8px;
    font-size: 10px
    font-family: 'Quicksand', sans-serif;
}
#Pass{
  width: 300px;
  height: 30px;
  border: none;
  border-radius: 3px;
  padding-left: 8px;
  font-size: 10px
  font-family: 'Quicksand', sans-serif;

}
#log{
    width: 300px;
    height: 30px;
    border: none;
    border-radius: 17px;
    padding-left: 7px;
    color: black;
    font-family: 'Quicksand', sans-serif;


}

.login-link {
    float: right;
    font-size: 17px;
}


/* =================

    FEED1

=================*/

@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@300;700&family=Open+Sans:wght@700&family=Poppins:ital,wght@0,300;1,300&family=Quicksand:wght@400;600&display=swap');
.feed_body{
  padding: 2px !important; 
  margin: 0 !important;
  text-align: center;
  color: grey; 
}

.feed_refresh {
    /*text-decoration: none;*/
    color: black;
    font-weight: 600;
    transition: color .5s;
    margin-bottom: 1rem; 
}

.feed_title{
  font-family: "Quicksand", sans-serif;
  font-size: 35px; 
}
.feed_p{
  font-family: "Quicksand", sans-serif;
  font-size: larger; 
}
.feed_prompt {
  padding: 10px;
  width: 80%; 
  margin: 50px auto; 
  text-decoration: none !important;
  position: relative;
  font-size: larger;
  text-align: center;
  color: black !important;
  border-radius: 35px;
} 
.feed_prompt_odd{ 
  background: #EADCD1; 
}
.feed_prompt_even{ 
  background: #CDD2C4;  
} 












/* =================

    HOMEPAGE

=================*/


/* HOMEPAGE NAV */

.nav {
    padding: 2rem 4rem;
    background-color: #EADCD1;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}

.nav-login {
    margin-left: auto;
    background-color: #CDD2C4;
    padding: 1rem 3rem;
    border-radius: 50px;
}

.nav-item {
    display: inline;
}

.nav-link {
    text-decoration: none;
    color: black;
    font-weight: 700;
}

.nav-login:hover {
    background-color: #9AA496;
    transition: background-color .5s;
}


/* HOMEPAGE HERO */

.home__hero {
    height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("imgs/home-hero.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.home__hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.home__subheading {
    font-size: 1.25rem;
}

/* HOMEPAGE ABOUT */

.home__about {
    padding: 4rem;
    display: flex;
    flex-direction: column;
}

.home__about-div {
    display: flex;
    margin: 2rem 0;
}

.home__about-div-text {
    max-width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home__about-div-img {
    width: 50%;
    height: 400px;
    margin-left: auto;
    border-radius: 10px;
}

.about-img-prompt {
    background-image: url("imgs/prompt.jpg");
    background-position: center;
    background-size: cover;
}

.about-img-students {
    background-image: url("imgs/students.jpg");
    background-position: center;
    background-size: cover;
}

.about-img-journey {
    background-image: url("imgs/journey.jpg");
    background-position: center;
    background-size: cover;
}

.join-button {
    width: 30%;
    padding: 2rem;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50px;
    border: none;
    background-color: #CDD2C4;
    display: block;
    margin:  0 auto;
    transition: background-color .5s, color .5s;
}

.join-button:hover, .join-button:focus {
    background-color: #9AA496;
}

/* ==============
CHOSEN PROMPT PAGE
================*/

.back-to-prompts-btn {
    /*text-decoration: none;*/
    color: black;
    font-weight: 700;
    transition: color .5s;
    margin-bottom: 1rem;
    display: block;
}
.back-to-prompts-btn:hover {
    color: grey;
}

.chosen-prompt-page {
    padding: 2rem 10rem;
}

.chosen-prompt {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EBC7B1;
    border-radius: 10px;
    margin: 0 auto;
}

.chosen-prompt p {
    font-weight: 700;
    font-size: 1.5rem;
}

.chosen-prompt__response-form {
    display: flex;
    flex-direction: column;
}

.chosen-prompt__response-form label {
    font-weight: 700;
    margin-top: 1rem;
}

.chosen-prompt__response-form #response {
    height: 100px;
    margin: 1rem 0;
    border: 1px solid grey;
    border-radius: 10px;
}

.chosen-prompt__response-form .post_button {
    width: 30%;
    padding: .8rem;
    background-color: #CDD2C4;
    border: green 1px;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    transition: background-color .5s;
    display: inline-block !important;
    margin-right: 20px !important;
}

.chosen-prompt__response-form .post_button:hover {
    background-color:  #9AA496;
    color: white;
}

.decorative-line {
    width: 100%;
    height: 1px;
    background-color: grey;
    margin: 2rem 0;
}

.chosen-prompt__anonymous-response {
    border: 1px solid grey;
    padding: 2rem;
    border-radius: 10px;
    margin-top:  1rem
}

.chosen-prompt__anonymous-response-user {
    font-weight: 700;
}


/* FOOTER */
footer {
    margin-top: 3rem;
    display: flex;
    font-weight: 700;
    font-size: .75rem;
    justify-content: center;
    align-items: center;
    background-color: #EBC7B1;
    height: 150px;
}


/* =================

    RESPONSES

=================*/
.response_body {
    text-align: center !important;  
}
.response_date {
    font-weight: normal !important;
    font-style: italic;
}

.response_div {
    border: 1px solid grey;
    padding: 2rem;
    border-radius: 10px;
    margin-top:  1rem;
    margin: 20px 30px;
    text-align: center !important;
    background-color: #F4F6F6;
}

.response_text {
    font-weight: 700;
}

.response_date {
    margin-top:5px;
    color: #283747;
    font-style: none;
}

.response_prompt {
    color:  #566573;
    font-weight: bold;
    text-decoration: underline;
}

.response_p {
    font-style: italic;
    color: #212F3D;
}

.response_textarea {
    padding: 4px;
}

.error {
    color: red !important;; 
}

.login_text {
    color: black;
    font-weight:bold;   
    margin-bottom: 10px;
}