*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,body{
  width: 100%;
  height: 100%;
}

html{
  font-size: 62.5%;
  font-family: sans-serif;
}

header{
  display: flex;
  width: 100%;
  height: 11vh;
  position: relative;
  margin-bottom: 2vh;
  background: black;
  align-items: center;
}

header .pageTitle{
  color: white;
  margin: 0 auto 0 auto;
  justify-self: center;
  font-size: 3.5rem;
}

header #toHomeBtn{
  color: white;
  font-size: 3rem;
  margin: 0 1rem 0 1rem;
  padding: 1.5rem;
  border: none;
  background-color:rgba(100, 100, 100, 0.5);
  border-radius: 4px;
  cursor: pointer;
  z-index: 100;
  justify-self: flex-start;
}

#toHomeBtn:hover{
  background-color: rgb(100, 100, 100);
}

header .profileBtn {
  color: white;
  font-size: 3rem;
  margin: 0 1rem 0 1rem;
  padding: 1.5rem 2rem 1.5rem 2rem;
  border: none;
  background-color:rgba(100, 100, 100, 0.5);
  border-radius: 4px;
  cursor: pointer;
  z-index: 100;
  justify-self: flex-end;
}

.profileBtn:hover{
  background-color: rgb(100, 100, 100);
}

#toTopBtn{
  color: white;
  display: none;
  position: fixed;
  font-size: 2rem;
  bottom: 3%;
  right: 2%;
  padding: 15px;
  border: none;
  background-color:rgba(0,0,0,0.5);
  border-radius: 4px;
  cursor: pointer;
  z-index: 100;
}

#toTopBtn:hover{
  background-color: rgba(0,0,0,1);
}


.Btn{
  display: flex;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1rem;
  padding: 0.75rem 1.5rem 0.75rem 1.5rem;
  border: 0;
  border-radius: 0.5rem;
  background: white;
  cursor: pointer;
  transition-property: border 0.5s;
  transition-duration: 1s;
  flex-direction: row;
  flex-wrap: nowrap;
}

.Btn:hover{
  color: rgb(26, 26, 26);
  border-radius: 0.25rem;
  background:rgb(0, 202, 108);
}


@media screen and (max-width: 800px){
  header .pageTitle{
    color: white;
    font-size: 4vh;
  }

  header #toHomeBtn{
    font-size: 4vh;
    padding: 2vw;
    top: 10%;
    left: 2%;
  }
  
  header .profileBtn{
    font-size: 4vh;
    padding: 2vw 2.5vw 2vw 2.5vw;
    top: 10%;
    left: 2%;
  }

}


/* Search Bar */
.searchBarContainer form{
  border: 2px solid black;
  border-radius: 10px;
  display: flex;
}

.searchBarContainer input[type="text"] { 
  font-size: 1.5rem;
  height: 5vh;
  border: none;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-left: 1rem;
}
.searchBarContainer button {
  width: 5rem;
  height: 5vh;
  font-size: large;
  border: none;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  cursor: pointer;
  align-self: flex-end;
}

.searchBarContainer button:hover {
  background: #ccc;
}

@media screen and (max-width: 800px){
  .searchBarContainer input[type="text"] { 
    font-size: 1.5rem;
    width: 100%;
    height: 5vh;
    border: none;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding-left: 1rem;
  }
  
  .searchBarContainer button {
    width: 4rem;
    height: 5vh;
    border: none;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background: rgb(155, 155, 155);
    cursor: pointer;
    align-self: flex-end;
  }
}

/* Fixed Footer */
footer{
  clear: both;
  display: flex;
  width: 100%;
  position: fixed;
  bottom: 0%;
  background: black;
  border: 2px solid black;
  justify-content: center;
  align-items: center;
}

.socialMedia ul{
  display: flex;
  list-style: none;
  justify-content: space-between;
  align-content: center;
}

.socialMedia ul li{
  display: flex;
  width: 7.5vw;
  max-width: 50px;
  height: 7.5vw;
  max-height: 50px;
  font-size: 2vw;
  margin: 2vh 5vw 2vh 5vw;
  padding: 1rem;
  background: white;
  border-radius: 50%;
  text-align: center;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}

.socialMedia ul li i{
  color: black;
}

.socialMedia ul li:hover{
  background: rgb(0, 126, 57);
}
.socialMedia ul li:hover i{
  color: white;
}

@media screen and (max-width: 800px){
  .socialMedia ul li{
    color: white;
    font-size: 5vw;
  }
}

/* Blank footer */

.blankFooter{
  margin-top: auto;
  clear: both;
  width: 100%;
  height: 7.5vw;
  background: black;
  border: 2px solid black;
}

@media screen and (max-width: 800px){
  .blankFooter{
    position: relative;
    margin-top: auto;
    padding-top: 6rem;
  }
}

/* Products Display*/
.ProductDetails{
  width: 100%;
  font-size: 1.5vw;
  padding: 1rem 2rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.ProductDetails section{
  width: 100%;
  height: 85%;
  justify-self: flex-end;
  align-self: flex-end;
}

.ProductDetails section h1{
  font-size: 3vw;
}

.ProductDetails section p,ul{
  color: rgb(41, 41, 41);
}

.ProductDetails section ul li{
  margin: 1rem 0rem 1rem 2rem;
}

.productPrice{
  display: flex;
  margin: auto 0 1rem auto;
  align-items: center;
}

.ProductDetails .productPrice .Btn{
  align-self: flex-end;
  margin-left: 1rem;
}

@media screen and (max-width: 800px){
  .ProductDetails{
    font-size: 3vw;
    padding: 1rem 0 1rem 0;
  }
  
  .ProductDetails section h1{
    font-size: 4vw;
  }
}