/* @import url("https://fonts.google.com/specimen/ABeeZee?preview.text=h%20o%20f%20u%20.%20register%20food&preview.text_type=custom#standard-styles"); */
@import url('https://fonts.googleapis.com/css2?family=ABeeZee&family=Montserrat:ital,wght@1,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Josefin Sans');


.title {
  text-align: center;
  font-family: "palatino";
  font-weight: bold;
  color: #ffffff;
}
#titleText{
  padding-top: 100px;
  margin-top: 0px;
  font-size: 70px;
  font-size: 85px;

}
body{
  margin: 0px;
}

#flexContainer {
  justify-content: center;
  display: flex;
  flex-direction: row;
  width: auto;
  font-family: "josefin sans";
  color: #ffffff;
  margin-left: 70px;
  margin-right: 70px;
}

.leftColumnContainer {
  display: flex;
  flex-direction: column;
  flex: 50%;
  margin-right: 70px;
  /* font-family: "ABeeZee";
  color: #ffffff; */
}
#displayPost{
  display: inline-block;
  width: 100%;
  height: 100%;
  color: black;
  
}
.rightColumnContainer {
  display: flex;
  flex-direction: column;
  flex: 50%;
  margin-left: 70px;
  
}

.rightFlexInputs {
  /* This appears to inherit display flex and column dir. Maybe flex 50%? */
  
}


.centerText {
  text-align: center;
}
button{
  font-family: "palatino";
  border-style: none;
  border-radius: 25px;
  background-color: #9aaf96;
  color: black;
  font-size: 32px;
  width: 300px;
  margin-top: 30px;
}
input{
  font-family: "josefin sans";
  color: black;
  border-style: solid;
  border-radius: 25px;
  border-color: white;
  background-color: #fff;
  margin: 5px;
  font-size: 24px;
}
p{
  font-size: 30px;
}

#backgroundImage{
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: -10;
}
#logo{
    height: 100px;
    margin-left: 35px;
    margin-top: 25px;
}
#logoDiv{
    justify-self: center;
    position: absolute;
}
.fontSize {
  font-size:23px;
  font-family: "josefin sans";
  display: flex;
  flex-direction: row;
  align-self: center;
  }

.leftFlexReads {
  transform: translateY(-30px);
}

label {
  width: 270px;
  font-size: 36px;
}

.bold {
  font-weight: bold;
  font-size: 52px;
}

.palatino {
  font-family: "josefin sans";
}

#specialRightButton {
  margin-left: 150px;
}

/* NAVBAR */

#navBar{
  display:inline-block;
  margin-top: 40px;
  white-space: nowrap;
  justify-content: center;
  position: absolute;
}
#homeDiv{
  display: inline-block;
  margin-left: 800px;
}
#homeLink{
  text-decoration: none;
  font-family: "palatino";
  color: #FFFFFF;
  font-size: 30px;
  margin-right: 50px;
}
#homeLink:hover{
  color: #AE6275;
}
#loginDiv{
  display: inline-block;
}
#loginLink{
  text-decoration: none;
  font-family: "palatino";
  color: #FFFFFF;
  font-size: 30px;
  margin-right: 50px;
}
#loginLink:hover{
  color: #CF9690;
}
#giveDiv{
  display: inline-block;
}
#giveLink{
  text-decoration: none;
  font-family: "palatino";
  color: #FFFFFF;
  font-size: 30px;
  margin-right: 50px;
}
#giveLink:hover{
  color: #9AAF96;
}
#findDiv{
  display: inline-block;
}
#findLink{
  text-decoration: none;
  font-family: "palatino";
  color: #FFFFFF;
  font-size: 30px;
  margin-right: 50px;
}
#findLink:hover{
  color: #CFB990;
}
#aboutDiv{
  display: inline-block;
}
#aboutLink{
  text-decoration: none;
  font-family: "palatino";
  color: #FFFFFF;
  font-size: 30px;
  margin-right: 50px;
  white-space: nowrap;
}
#aboutLink:hover{
  color: #AF90AF;
}

/* Media query */

@media screen and (max-width: 1000px){
  body{
    display: flex;
    flex-direction: column;
  }
  #titleText{
    font-size: 50px;
    margin-top: 30px;
  }
  #backgroundImage{
    object-fit: cover;
    position: fixed;
  }
  #flexContainer{
    flex-direction: column;
  }
  .leftColumnContainer{
    order: 1;
  }
  .rightColumnContainer{
    order: 0;
    margin-left: 0px;
    justify-content: center;
  }
  #navBar {
    display: none;
  }
  #flexContainer {
    align-items: center;
  }

  #specialRightButton {
    margin-left: 120px;
  }
  
}