
a:link 
{
  color: #002e2e;
  background-color: transparent;
  text-decoration: underline;
}

a:visited 
{
  color: #002e2e;
  background-color: transparent;
  text-decoration: underline;
}

a:hover 
{
  color: lime;
  background-color: transparent;
  text-decoration: underline;
}

a:active 
{
  color: #002e2e;
  background-color: transparent;
  text-decoration: underline;
}

input[type="checkbox"] {
    appearance: none;
    background-color: #add3ad;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    padding: 2px 6px;
    display: grid;
    place-content: center;
    cursor: pointer;
}

input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 60ms transform ease-in-out;
    box-shadow: inset 1em 1em #003a3a;
}
  
input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.header
{
    height: 240px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.headerlogo
{
    display: inline-block;
    margin-bottom: 15px;
}

.navbar 
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.bar 
{
	background-color: #000000;
	height: 32px;
	width: 100%;
}

.barshadow
{
	background-color: #4e6258;
	height: 5px;
	width: 100%;
}

.topbutton
{
    margin-left: 45px;
    margin-right: 45px;
    cursor: pointer;
}

.perfume 
{
    width: 426px;
    height: 495px;
    background-color: #89ad9b;
    box-shadow: 5px 5px #4e6258;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    cursor: pointer;
}

.perfumeimage 
{
    margin: 10px;
    border: 3px #000000 solid;
}

.perfumetitle
{
    text-align: center;
    font-size: 24px;
    
    text-shadow: 2px 2px 1px #4e6258;
}

.perfumecontainer
{
    margin: auto;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
}

.perfumeouter
{
    display: block;
    margin: auto;
}

.notecontainer {
    text-shadow: 2px 2px 1px #4e6258;
    font-size: 24px;
    width: 80%;
    height: 100%;
    padding-top: 20px;
    margin: 30px auto;
    background-color: #89ad9b;
    box-shadow: 5px 5px #4e6258;
}

.innernotecontainer {
    padding-top: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.noteTitle {
    text-decoration: none;
    padding: 4px 10px;
    box-shadow: 3px 3px 1px #4e6258, inset 3px 3px 1px #4e6258;
    border: 3px solid #000000;
}

.note {
    padding: 10px 12px;
}

.filter {
    text-shadow: 2px 2px 1px #4e6258;
    font-size: 24px;
    width: 350px;
    height: 100%;
    margin: 15px;
    float: left;
    background-color: #89ad9b;
    box-shadow: 5px 5px #4e6258;
}

.filterclosed {
    text-shadow: 2px 2px 1px #4e6258;
    font-size: 24px;
    width: 128px;
    height: 38px;
    margin: 15px;
    float: left;
    background-color: #89ad9b;
    box-shadow: 5px 5px #4e6258;
}

.filterbutton {
    margin: 0px 2px;
    cursor: pointer;
}

.filterspace {
    margin-bottom: 8px;
}

.filterheader {
    margin: 4px;
}

.filterbox {
    display: flex;
    flex-direction: row;
    margin: 4px 0px;
}

.aboutcontainer
{
    text-shadow: 2px 2px 1px #4e6258;
    font-size: 24px;
    width: 80%;
    margin: auto;
    margin-top: 20px;
}

.aboutright
{
    border-right: 3px solid #4e6258;
    text-align: right;
    padding-right: 16px;
    font-size: 24px;
}

.aboutleft
{
    border-left: 3px solid #4e6258;
    text-align: left;
    padding-left: 16px;
    font-size: 24px;
}

.detailscontainer
{
    width: 90%;
    margin: auto;
    margin-top: 20px;
    text-align: center;
}

.detailstitle
{
    text-align: center;
    margin: 30px;
}

.detailsdesc
{
    text-shadow: 2px 2px 1px #4e6258;
    font-size: 24px;
    text-align: center;
    margin-bottom: 35px;
    margin-top: 50px;
}

body
{
    font-size: 48px;
  	font-family: 'Work Sans', sans-serif;
  	text-shadow: 3px 3px 1px #4e6258;
	
    color: #000000;
    background-color: #6f8c7d;
	
    height: 100vh;
    margin: 0;
	
	  -webkit-font-smoothing: antialiased;
}