:root{
  --boxBgImg: url("/media/backgrounds/boxbackgroundpixel.png");
  --bgSize: cover;
  --borderColor: 
}


/*all the visual stuff*/

.mainContainer{
  width: 80vw;
  height: auto;
}

body{
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "Pixelify Sans", sans-serif;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  text-shadow: 1px 1px 0 lightcoral, -1px -1px 0 lightblue;
  background-image: url("/media/backgrounds/websitebackgroundpixel.png");
  background-size: var(--bgSize);
}


/*header*/

header{
  display: flex;
}

.siteName{
  order: 1;
  border: 5px solid black;
  margin-right: 10px;
  height: auto;
  width: 25%;
  box-shadow: 1px 1px 0 lightcoral, -1px -1px 0 lightblue;
  background-image: var(--boxBgImg);
  background-size: var(--bgSize);
}

.title{
  order: 2;
  border: 5px solid black;
  height: auto;
  width: calc(75% - 30px);
  box-shadow: 1px 1px 0 lightcoral, -1px -1px 0 lightblue;
  background-image: var(--boxBgImg);
  background-size: var(--bgSize);
}

.title h1{
  margin-top: .9em;
  margin-bottom: .9em;
}


/*nav*/

nav{
  width: 25%;
  border: 5px solid black;
  margin-top: 10px;
  list-style: none;
  box-shadow: 1px 1px 0 lightcoral, -1px -1px 0 lightblue;
  background-image: var(--boxBgImg);
  background-size: var(--bgSize);
}

#uniqueh1{
  margin-bottom: 15px;
}

#uniqueh1Tablet{
  margin-bottom: 15px;
  display: none;
}

ul{
  padding: 0;
  list-style: none;
}

li{
  padding: 0;
  list-style: none;
  line-height: 25px;
  font-size: 20px;
  text-shadow: 0.7px 0.7px 0 lightcoral, -0.7px -0.7px 0 lightblue;
}

#homeDropdownButton{
  border: none;
  background: none;
}

.homeItem{
  display: none;
}

#ourStuffDropdownButton{
  border: none;
  background: none;
}

.ourStuffItem{
  display: none;
}

#pookiesPageDropdownButton{
  border: none;
  background: none;
}

.pookiesPageItem{
  display: none;
}

#shrinesDropdownButton{
  border: none;
  background: none;
}

.shrinesItem{
  display: none;
}


/*main*/

.navMain{
  display: flex;
}

main{
  width: calc(75% - 30px);
  margin-left: 10px;
  border: 5px solid black;
  margin-top: 10px;
  box-shadow: 1px 1px 0 lightcoral, -1px -1px 0 lightblue;
  background-image: var(--boxBgImg);
  background-size: var(--bgSize);
}

main p{
  padding: 0 10px 0 10px;
  margin-bottom: 21.44px;
}

.customLine{
  border: 2px solid black;
  box-shadow: 0px 1px 0 lightcoral, 0px -1px 0 lightblue;
}

#mainColumns{
  display: flex;
}

#howAmIToday{
  padding: 0 10px 0 10px;
  width: 50%;
}

#whatAmIDoingToday{
  padding: 0 10px 0 10px;
  width: 50%;
}

#emoticon{
  margin-bottom: 21.44px;
}


/*text styling*/

* p{
  font-size: 20px;
}

* button{
  font-family: "Pixelify Sans", sans-serif;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

* a{
  color: black;
}

@media screen and (width >= 601px) and (width <= 1366px){
  .mainContainer{
    width: 95vw;
  }
  #uniqueh1{
    display: none;
  }
  #uniqueh1Tablet{
    display: block;
  }
  a{
    font-size: 15px;
  }
}

@media screen and (width <= 600px){
  .mainContainer{
    width: 99vw;
  }
  #uniqueh1{
    display: none;
  }
  #uniqueh1Tablet{
    display: block;
  }
  .siteName{
    font-size: 12.5px;
  }
  nav{
    width: 30%;
  }
  main{
  margin-left: 0px;
  width: 70%;
  }
  .siteName{
    margin-right: 0px;
    width: calc(30% - 10px);
  }
}
