*
{
   color: #00ad00;
   text-decoration: none;
}


/* Color Pallete 
Background: #000000
Text: #00ad00;
*/


/* Body/General Style */
body
{   
   margin: auto;
   width: 80%;
   font-family: 'Mulish', sans-serif;
   font-weight: 100;
   background-color: #000000;
}



/* Menu */
div.menu
{
   height: 100vh;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}

div.menu-item
{
   padding: 1rem 1rem;
   line-height: normal;
   text-align: center;
   transition: 0.3s;
}

div.menu-item:hover
{
   transform: scale(1.1);
}

div.menu-item:hover::before
{
   font-size: 40pt;
   content: ">";
}

div.menu-item:hover::after
{
   font-size: 40pt;
   content: "<";
}

div.menu-item a
{
   font-size: 40pt;
}



/* Gallery*/

div.gallery
{
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}

.container
{
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   text-align: center;
}

.box
{
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   align-items: center;
}

.column
{
   display: flex;
   flex-direction: column;
   width: 32.5%;
}

.column img
{
   width: 100%;
   padding-bottom: 0.5vw;
}