@font-face {
  font-family: felix-tilting;
  src: url("/font/FELIXTI.TTF");
}

main{
  margin-bottom: 10em;
}

p {
  font-family: felix-tilting;
  margin: 0;
  padding: 0;
}

a {
  font-family: felix-tilting;
  text-decoration: none;
  color: black;
  margin-right: 1rem;
  padding: 0;
  cursor: pointer;
  font-size: 1rem;
}

h1 {
  margin: 0em;
  font-family: felix-tilting;
  text-align: center;
  font-weight: lighter;
}

h2 {
  text-align: center;
  font-weight: lighter;
  font-family: felix-tilting;
  font-size: 2rem;
}

h3 {
  text-align: center;
  font-weight: lighter;
  font-family: felix-tilting;
  font-weight: bold;
}

ul {
  list-style: none;
  font-family: felix-tilting;
  padding: 0;
}

li {
  display: inline-block;
  margin: 2em;
}

body {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  margin: 0;
}

img {
  width: 100%;
}

hr{
  width: 70%;
  margin: 0;
}



.login {
  display: none;
  visibility: hidden;
}

#nav-logo{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
}

#nav-bar {
  position: absolute;
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-self: center;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 1em 1em;
}

#nav-bar li{
  margin: 0;
}

#nav-bar-list{
  display: flex;
  flex-direction: row;
  gap: 2em;
}

#logo-text {
  position: absolute;
  display: inline;
  top: 50%;
  z-index: 1;
  text-align: center;
}
#hero {
  /* display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; */
  height: 100vh;
  /* background-image: url('/design/Hero\ Image.jpg');
  background-size: auto;
  border: solid;
  border-width: 100px 100px 0px 100px;
  border-color: white;
  box-shadow: inset 0 0 10px lightgray;
  overflow: hidden;
  animation: infinite 35s linear infinite; */
}

@media (max-width:40em){
  #hero{
    border-width: 100px 0px 0px 0px;
  }
}

#hero-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
  border: 5px solid;
  border-color: white;
  background-color: white;
  box-shadow: 0px 0px 20px 10px lightgray;
}

#hero-image {
  width: 60vw;
}

#instagram-logo {
  display: flex;
  flex-direction: column;
  align-self: center;
  width: 2rem;
}

#gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 300px));
  align-items: center;
  justify-content: center;
  column-gap: 1em;
  margin: auto 2em;
}


#post {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 2em 2em;
  height: 22em;
  width: auto;
  border-width: 1px;
  border-color: lightgray;
  border-style: solid;
  margin: 1em;
  box-shadow: 0px 0px 5px 2px lightgray;
  transition: 0.5s all ease-out;
}

#post-text-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

#post-picture-area {
  display: flex;
  align-items: center;
  max-height: 75%;
}

footer {
  background-color: whitesmoke;
  display: flex;
  flex-direction: row;
  min-height: 90vh;
  width: 100%;
  box-sizing: border-box;
}

#footer{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10em;
  box-shadow: 0px 0px 5px 2px lightgray;
  width: 100%;
  padding: 0rem 2em;
  box-sizing: border-box;
}

#footer ul{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#left-footer{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  gap: 3rem;
}

#left-footer-section{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

#right-footer{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width : 40em){
  #footer{
    display: flex;
    flex-direction: column;
    gap: 2em;
  }

  footer hr{
    width: 80%;
    margin: 0;
  }

  #nav-logo{
    width: 300px;
    z-index: -10;
  }

  #nav-bar{
    padding: 1rem;
  }
}


/* ANIMATIONS */

#post:hover{
  transform: scale(1.05);
}

@keyframes infinite{
  0%{
    background-position: -800px 0;
  }
}

#RL-flower-container{
  animation: rotate-RL 5s alternate-reverse infinite;
  transform-box: fill-box;
  transform-origin: center;
}

#RM-flower-container{
  animation: rotate-RM 3s alternate-reverse infinite;
  transform-box: fill-box;
  transform-origin: center;
}

#RS-flower-container{
  animation: rotate-RM 2s alternate-reverse infinite;
  transform-box: fill-box;
  transform-origin: center;
}

#LB-flower-container{
  animation: rotate-LB 6s alternate-reverse infinite;
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes rotate-RL {
  0% {transform: rotate(25deg);}
}

@keyframes rotate-RM {
  0% {transform: rotate(30deg);}
}

@keyframes rotate-RS {
  0% {transform: rotate(40deg);}
}

@keyframes rotate-LB {
  0% {transform: rotate(35deg);}
}
