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

:root {
--primary-color: #D96AA7;
--secondary-color: #422C73;
--complimentary-color: #88BFB5;
--contrast-color: #F2E527;
--light-color: #D2A9D9;
--fith-color: #FF1F00;
--six-color: #11AA00;
}

.container {
  background: #191919;
  min-height: 200vh;
  font-family: Montserrat, sans-serif;
}

nav a {
    font-size: 40px;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    text-align: center;
}

nav {
    position: fixed;
    left: 10;
    z-index: 50;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    height: 100vh;
    background: var(--secondary-color);
}

section {
    position: absolute;
    top: 10;
    left: 130;
    height: 100vh;
    width: 00;
    opacity: 0;
    transition: all ease-in .5s;
    justify-content: center;
    align-items: center;
	
    /*display: flex;*/
} 

section h1 {
    color: #fff;
    font-size: 80px;
    text-transform: uppercase;
    opacity: 0;
}

/* Styles applied on trigger */
section:target {
    opacity: 1;
    position: absolute;
    left: 0;
    width: 120%;
    height: 200%;
    z-index: 1;
}

section:target h1 {
    opacity: 0;
    animation: 2s fadeIn forwards .5s;
}

#Format1 {
  background:var(--primary-color);
}
#Format2 {
    background: var(--complimentary-color);
}

#Format3 {
    background: var(--contrast-color);
}

#Format4 {
    background: var(--light-color);
}

#Format5 {
    background: var(--fith-color);
}

#Format6 {
    background: var(--six-color);
}
#Format7 {
  background:var(--primary-color);
}
#Format8 {
    background: var(--complimentary-color);
}

#Format9 {
    background: var(--contrast-color);
}

#Format10 {
    background: var(--light-color);
}

#Format11 {
    background: var(--fith-color);
}

#Format12 {
    background: var(--six-color);
}

@keyframes fadeIn {
    100% { opacity:1 }
}

#content       
{
    font-size: .75em; /* 12/16 */
    width: 100%; /* 650/960 */
    max-width: 900px;
    text-align: lefT;
    margin: 10px auto; /*auto centers the container */
    padding: 10; /* 25/650 */
}
/*CSS3 multiple columns.*/
/* Get em size for colums: 184/16 */   
.columns
{   
    -moz-column-width: 15.5em; /* Firefox */
    -webkit-column-width: 15.5em; /* webkit, Safari, Chrome */
    column-width: 15.5em;
    line-height: 1.5;
		font-size: 25px;
		padding : 30px;
}
/*remove standard list and bullet Formatting from ul*/
.columns ul
{
    margin: 0;
    padding: 30;
    list-style-type: none;
}
/* correct webkit/chrome uneven margin on the first column*/
.columns ul li:first-child
{
    margin-top:0px;

}