/* 
    Custom reset largely based on Eric Meyer, with my own font-family declaration:
    http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/


        html, body, div, span, applet, object, iframe,
        h1, h2, h3, h4, h5, h6, p, blockquote, pre,
        a, abbr, acronym, address, big, cite, code,
        del, dfn, em, img, ins, kbd, q, s, samp,
        small, strike, strong, sub, sup, tt, var,
        b, u, i, center,
        dl, dt, dd, ol, ul, li,
        fieldset, form, label, legend,
        table, caption, tbody, tfoot, thead, tr, th, td,
        article, aside, canvas, details, embed, 
        figure, figcaption, footer, header, hgroup, 
        menu, nav, output, ruby, section, summary,
        time, mark, audio, video {
            margin: 0;
            padding: 0;
            border: 16px;
            font-size: 100%;
            font: Futura;
            vertical-align: baseline;
        }
        
        /* HTML5 display-role reset for older browsers */
        article, aside, details, figcaption, figure, 
        footer, header, hgroup, menu, nav, section {
            display: block;
        }
        body {
            line-height: 1;
        }
        ol, ul {
            list-style: none;
        }
        blockquote, q {
            quotes: none;
        }
        blockquote:before, blockquote:after,
        q:before, q:after {
            content: '';
            content: none;
        }
        table {
            border-collapse: collapse;
            border-spacing: 0;
        }


/* CUSTOM CSS */


html {
    font-family: 'Nunito Sans', sans-serif;
    src: local('Futura Std');
    font-weight: 400;
    font-size: 16px;
    color: #292929;
    background-color: #eee; 
    background: url(images/background.jpg) no-repeat top center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


html * {
    box-sizing: border-box;
}

strong {
    font-weight: 900;
}

.blue {
    color: #1A8DFF;
}

.red {
    color: #FD156C;
}

/* h1, h2, h3, h4, h5, h6 {
    font-family: Futura; 
    font-weight: 700;
    text-transform: uppercase;
} */

header {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;

    justify-content: center;
   /* padding: 2em 1em 4em 1em; */
    text-transform: uppercase;
}

header img {
    width: 150px;
    height: auto;
    margin-right: 1em;
    float: left;
}

.topNav {
	max-width:1300px;
	align-content: top;
	margin-left:50%;
}

header h1 {
    font-size: 4em;
    color: #5F5F5F;
    font-weight: 900;
}

    @media screen and (max-width: 1300px) {
        header h1 {
            font-size: 3.5em;
        }
        h2 {
            font-size: 1.2em;
        }
        .rightColumn h3 {
            font-size: 6em;
        }
    }

    @media screen and (max-width: 1000px) {
        header h1 {
            font-size: 3em;
        }
         h2 {
            font-size: 1.1em;
        }
        .rightColumn h3 {
            font-size: 5em;
        }
    }

    @media screen and (max-width: 800px) {
        header h1 {
            font-size: 2.5em;
        }
         h2 {
            font-size: 1em;
        }
        .rightColumn h3 {
            font-size: 4em;
        }
        .rightColumn{
            flex-wrap: wrap;
        }
    }

.responsive_img {
max-width: 110%;
  height: auto;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

li {
  float: left;
}

li a, .dropbtn {
  display: inline-block;
  color: #3f8ef7;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
  background-color: #c4c4c4;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {background-color: #f1f1f1;}

.dropdown:hover .dropdown-content {
  display: block;
}

h1 span {
    font-size: .5em;
    display: inline-block;
    color: #FD156C;
    text-transform: uppercase;
    font-weight: 900;
}

main {
    width: 90%;
    max-width: 940px;
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    margin: 0 auto;
}

h2 {
    color: #FD156C;  
    padding-top: 1em;
    line-height: 1.5em;
    text-transform: uppercase;
    font-weight: 800;
}


.leftColumn {
	/* width: 80%; */
	float: left;
}

.leftColumn {
    line-height: 1.5rem;
}

.leftColumn h3 {
	color: #1d1d1d;
    font-size: 18px;
    /* text-transform: uppercase; */
    line-height: 1.5em;
    padding-bottom: 1rem;
    padding-top: 2rem;
    font-weight: 900;
}

.leftColumn h4 {
	color: #1d1d1d;
    font-size: 16px;
    /* text-decoration: underline; */
    padding-bottom: 1rem;
    padding-top: 2rem;
}

.rightColumn {
	width: auto;
	background: white;
    padding: 1em;
	float: left;
}

.rightColumn h2 {
    margin-bottom: 0.5em;
}

.rightColumn h3 {
    font-size: 6em;
    line-height: 1em;
    padding-bottom: .08em;
    border-bottom: .1em solid #F0F0F0;
    color: #1d1d1d;
    margin-bottom: -0.04em;
}

.rightColumn p {
    padding-bottom: 4em;
    line-height: 1.8em;
}

.leftColumn {
    height: 90%;
    padding-right: 10%;
}

.leftColumn a {
    color: #006CFF;
}

.leftColumn p {
    line-height: 1.8em;
}

.leftColumn p.q {
    margin-bottom: 0;
    font-weight: 500;
    font-style: italic;
}

.leftColumn h2 {
    padding-bottom: 1em;
}

.leftColumn h3 {
    font-size: 0.8em;
    padding-top: .2em; 
    margin-bottom: .2em;
}

/* .leftColumn h4 {
    font-family: 'Roboto';
    font-weight: 500;
    line-height: 1.8em;
} */

p, ul, ol {
    line-height: 1.5em;
    margin-bottom: 1em;
}

ol {
    list-style: decimal;
    margin: -.5em 0 1em 2em;
}

li {
    margin-bottom: .5em;
}


footer {
    font-size: .8em;
    float: center;
    padding: 4em 2em 2em 2em;
    clear: both;
    
}

img[class*="star"] {
    position: absolute;
    z-index: -1;
    border: green;
}

img.star1 {
    top: 150px;
    left: -333px;
}

img.star2 {
    top: 550px;
    right: 0;
}

img.star3 {
    top: 120vh;
    left: 50%;
}

img.star4 {
    top: 1200px;
    left: 130px;
}

img.star5 {
    top: 1200px;
    right: -142px;
}

img.star6 {
    top: 1650px;
    left: 40%;
}

@media screen and (max-width: 600px) {
 
    main {
        flex-wrap: wrap;
    }
    
    main article,
    main aside {
        width: 100%;        
    }
}
    
/* ----------Navigation----------- */
    
.topnav {
    /* overflow: hidden; */
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
  }
  
  /* Style the links inside the navigation bar */
  .topnav a {
    display: block;
    color: #006CFF;
    text-align: center;
    padding: 24px 18px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
  }
  
  .topnav a:hover {
    background-color: #ddd;
    color: #006CFF;
  }
  
  .topnav a.active {
    text-decoration: underline;
    color: #006CFF;
  }
  
  /* Hide the link that should open and close the topnav on small screens */
  .topnav .icon {
    display: none;
  }

  @media screen and (max-width: 650px) {
    .topnav a:not(none) {display: none;}
    .topnav a.icon {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
      /* float: right;
      display: block; */
      
    }
  }
  
  @media screen and (max-width: 650px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
      position: relative;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: right;
      display: block;
      text-align: left;
      background-color: #ddd;
    }
  }