/* Article:  https://superdevresources.com/full-background-image-css/ */
body {
  background: url("../Images/bgbg.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.responsive {
  width: auto;
  height: auto;
}
.content {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    border-radius: 5px;
    padding-bottom: 32px;
}

h1, h1 a {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    text-decoration: none;
    color: #fff;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-variant: normal;
    font-size: xx-large;
    margin-top: -26px;
}

h2, h2 a {
    vertical-align: middle;
    text-align: center;
    margin: 0 auto;
    text-decoration: none;
    color: #fff;
    padding-top: 20px;
    font-size: medium;
    padding-bottom: 18px;
}


h3, h3 a {
    vertical-align: middle;
    text-align: center;
    margin: 0 auto;
    text-decoration: none;
    color: #FFD000;
    padding-top: 20px;
    font-size: x-small;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

p {
    width: 120%;
    max-width: 700px;
    text-align: left;
    margin-top: 36px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    padding-bottom: 2px;
    font-size: medium;
}



* { box-sizing: border-box; }

body { 
  font-family: 'Open Sans', sans-serif;
  color: #666;
}

/* STRUCTURE */

.wrapper {
	padding: 5px;
	max-width: 960px;
	width: 95%;
	margin: 20px auto;
}
.columns {
    flex-flow: row wrap;
    justify-content: center;
    margin: 5px 0;
}

.column {
	flex: 1;
	 
	margin: 2px;
	padding: 10px;
	&:first-child { margin-left: 0; }
	&:last-child { margin-right: 0; }
	
}

footer {
    padding-top: 35px;
    padding-bottom: 0;
    margin-top: 20px;
    text-align: center;
    color: #FFE000;
    font-size: small;
}


@media screen and (max-width: 980px) {
  .columns .column {
    margin-bottom: 5px;
   
		&:nth-last-child(2) {
			margin-right: 0;
    width: auto;
    width: 0%;
    width: 0%;
    width: 0%;
    width: 100%;
		}
		&:last-child {
			flex-basis: 100%;
			margin: 0;

}

@media screen and (max-width: 680px) {
	.columns .column {
		flex-basis: 100%;
		margin: 0 0 5px 0;
	} 
