



/*this class is to move the text on the circle buttons down 
so the entire word would fit*/


.down1{
	margin-top: 3vw;
	text-align: center;
}

/*this mysterious box below is what gives a ton of extra scrolling 
space at the bottom.*/

.z
{
	background-color: transparent;
	
	padding: 1vh;
	position: absolute;
	width: 25vw;
	height: 30vw;
	top: 100vw;
	left: 40vw;
	z-index: -1;
}

/*this is the 3 by 3 grid for the 9 situations*/
.submenu{
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 15vw);
    grid-template-rows:  repeat(3, 15vw);
    grid-gap: 3vw;
    font-style: italic;
	color: #0DD3CD;
	font-size: 1.5vw;
	position: relative;
	top: 20vw;
	left: 20vw;

}

/*this is to make sure that the link 
doesn't have a hyperlink color*/
a{
	color: inherit;
	text-decoration: none;
}

/*these are the general settings for the grid items */
.obj{
    background-color: white;
    color: black;
    text-shadow: none;
    border: 4px solid black;
    padding: 10px;
    font-family: 'Playfair Display', serif;
    z-index: 1;
    transition: all 0.4s ease 0s;

  
}

/*This code fo obj1 and obj2 is to make it change to another 
image when hovered over*/
.obj.obj1:hover
{
	background-image: url("ly1.png");
	background-size: cover;
	width: 50vw;
	height: 50vw;
	transition: all 0.4s ease 0s;
	border: none;
	z-index:2;
	color: transparent;
}

.obj.obj2:hover
{
	background-image: url("ly2.png");
	background-size: cover;
	width: 50vw;
	height: 50vw;
	transition: all 0.4s ease 0s;
	border: none;
	z-index:2;
	color: transparent;
}

/*.obj1{
    display: flex;
    justify-content: center;
   grid-column-start: 2fr;
   grid-column-end: 5fr;
   grid-row: 2fr;

}


.obj2{
    display: flex;
    justify-content: center;
   grid-column-start: 5fr;
   grid-column-end: 8fr;
grid-row: 2fr;
}
}

.obj3{
    display: flex;
    justify-content: center;
    grid-column-start: 8fr;
   grid-column-end: 12fr;
grid-row: 2fr;

}

.obj4{
    display: flex;
    justify-content: center;
   grid-column-start: 2fr;
   grid-column-end: 5fr;
   grid-row: 3fr;
}


.obj5{
    display: flex;
    justify-content: center;
   grid-column-start: 5fr;
   grid-column-end: 8fr;
grid-row: 3fr;
}
}

.obj6{
    display: flex;
    justify-content: center;
    grid-column-start: 8fr;
   grid-column-end: 10fr;
grid-row: 3fr;

}

.obj7{
    display: flex;
    justify-content: center;
   grid-column-start: 2fr;
   grid-column-end: 5fr;
   grid-row: 4fr;
}


.obj8{
    display: flex;
    justify-content: center;
   grid-column-start: 5fr;
   grid-column-end: 8fr;
grid-row: 4fr;
}
}

.obj9{
    display: flex;
    justify-content: center;
    grid-column-start: 8fr;
   grid-column-end: 10fr;
grid-row: 4fr;

}
*/

/*.obj4:hover{
   color: black;
   text-shadow: 2px 2px #0DD3CD;
   grid-column-start: 7;
   grid-column-end: 7;
}


.obj3:hover{
    color: black;
   text-shadow: 2px 2px #0DD3CD;
   grid-column-start: 6;
   grid-column-end: 6;
}

.obj2:hover{
   color: black;
   text-shadow: 2px 2px #0DD3CD;
   grid-column-start: 5;
   grid-column-end: 5;
    
}

.obj1:hover{
    
    color: #0DD3CD;
   text-shadow: 2px 2px black;
   grid-column-start: 4;
   grid-column-end: 4;
}


*/

header{
	
  font-size: 2.5vw;
  background-color: white;
  color: transparent;

  
}
body{
	font-family: 'Playfair Display', serif;
	font-weight: 600;
	font-size: 1vw;
	background-image: url("lemon.gif");
	background-size: cover;
	background-attachment: fixed;
}
.flexbox
{
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	/*margin-right: -200px auto;*/
	

}
strong{
	color: #0F847E;
	font-weight: 900;
}
.flexLeft
{
	width: 30vw;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: justify-start;
	margin-left: 20vw; 
}

.title
{
	letter-spacing: 2vw;
	color: #0DD3CD;
	font-size: 4vw;
	font-family: 'Chango', cursive;
	text-shadow: 4px 4px white;
	position: absolute;
	top: 18vw;
	left: 20vw;
	display: flex;
	flex-wrap: nowrap;
}
 
.logo
{
position: absolute;
width: 10vw;
height: auto;
top: 2vw;
left: 4vh;
}


/*these next few buttons are for the standard menu 
they transition between different colors for text, background and border
I also made sure that the button that describes the page the 
user is on is highlighted.

I made the ease 0s so that the buttons respond quickly and are
more lively.*/

.example_c {
color: black;

text-decoration: none;
text-shadow: 4px 4px #F4F40F;
background: white;
padding: 20px;
border: 4px solid black !important;
display: inline-block;
transition: all 0.4s ease 0s;

/*box-shadow: 25px 25px #FE6F8C;
*/font-size:1.5vw;


/*top: 650px;
left: 1400px;
position: absolute;*/

}


}
.example_c.about:hover{
  /*top: 650px;
left: 1450px;
position: absolute;*/
color: white;
background: black;
border: 4px 4px solid white;
text-shadow: none;
position: absolute;
left: 30vw;
top: 7vw;

}
.example_c.about{
  /*top: 650px;
left: 1450px;
position: absolute;*/

text-shadow: none;

position: absolute;
left: 30vw;
top: 7vw;
}
.example_c.proj:hover{
  /*top: 650px;
left: 1450px;
position: absolute;*/

text-shadow: none;
position: absolute;
left: 40vw;
top: 7vw;
}
.example_c.proj{
  /*top: 650px;
left: 1450px;
position: absolute;*/

text-shadow: none;
position: absolute;
left: 40vw;
top: 7vw;
}
.example_c.bucket{
  /*top: 650px;
left: 1450px;
position: absolute;*/

text-shadow: none;
position: absolute;
left: 51vw;
top: 7vw;
}
.example_c.love{
  /*top: 650px;
left: 1450px;
position: absolute;*/
color: white;
background-color: black;
text-shadow: none;
position: absolute;
left: 63vw;
top: 7vw;
}
.example_c.love:hover{
  /*top: 650px;
left: 1450px;
position: absolute;*/
color: white;
background-color: black;
text-shadow: none;
position: absolute;
left: 63vw;
top: 7vw;
color: white;
border: 4px 4px solid black;
background-color: black;
}

.example_c:hover {
color: #ffffff !important;
background: black;
border: 4px solid white !important;
transition: all 0.4s ease 0s;
text-shadow: none;

/*box-shadow: 25px 25px #ffffff;*/
/*text-shadow: 2px 2px #F4F40F;*/
}

