body {
  background-color: #1e1b21;
  background-attachment: fixed;
  font-family:Helvetica;
  margin: 50px;
}

a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #000000
}

a:active {
  color: #29bfff;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
  justify-content: center;
}

.column {
  flex: 10%;
  max-width: 10%;

  padding: 0 4px;
}

.columnArt {

  padding: 0 4px;
}

.columnIcon {
  flex: 30%;
  max-width: 30%;

  padding: 0 4px;
}
.columnDesc {
  flex: 50%;
  max-width: 50%;

  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}


  #headerImage {
    width: 100%;
  }

.thumbnail:hover {
     width:120%;
     height:auto;
     display:block;
     z-index:999;
     cursor: pointer;
     -webkit-transition-property: all;
     -webkit-transition-duration: 0.3s;
     -webkit-transition-timing-function: ease;
}

@media screen and (max-width: 1500px) {
  .column1 {
	 flex: 35%;
     max-width: 35%;
	 background-image: linear-gradient(to bottom right , #1f96e6, #29bfff);
	color: white;
   }
  .column {
    flex: 55%;
    max-width: 55%;
  }
  .columnS {
    flex: 55%;
    max-width: 55%;
	margin-top: 8px;
	padding: 0 4px;
    background-image: linear-gradient(to bottom right , #1f96e6, #29bfff);
	color: white;
  }
  
  #headerImage {
    width: 50%;
  }
  
  .thumbnail:hover {
     width:105%;
     height:auto;
     display:block;
     z-index:999;
     cursor: pointer;
     -webkit-transition-property: all;
     -webkit-transition-duration: 0.3s;
     -webkit-transition-timing-function: ease;
}
}

@media screen and (max-width: 1090px) {
  .column1 {
	 flex: 100%;
     max-width: 97%;
	 background-image: linear-gradient(to bottom right , #1f96e6, #29bfff);
	color: white;
	  position : relative;
   }
  .column {
    flex: 100%;
    max-width: 100%;
  }
  .columnS {
    flex: 100%;
    max-width: 97%;
	margin-top: 8px;
	padding: 0 6px;
    background-image: linear-gradient(to bottom right , #1f96e6, #29bfff);
	color: white;
  }
  
    #headerImage {
    width: 100%;
  }
  
  .thumbnail:hover {
     width:105%;
     height:auto;
     display:block;
     z-index:999;
     cursor: pointer;
     -webkit-transition-property: all;
     -webkit-transition-duration: 0.3s;
     -webkit-transition-timing-function: ease;
}
}


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

.popup{
    background-color: #ffffff;
    width: 40%;
    padding: 30px 40px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    border-radius: 8px;
    display: none;
    font-family: "Poppins",sans-serif;
    text-align: center;
}

.popup button{
    display: block;
    margin:  0 0 20px auto;
    background-color: transparent;
    font-size: 30px;
    color: #ffffff;
    background: #1e1b21;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    border: none;
    outline: none;
    cursor: pointer;
}

.popup h2{
   margin-top: -20px;
}
.popup p{
    font-size: 14px;
    text-align: justify;
    margin: 20px 0;
    line-height: 25px;
}

.tabs {
	display: flex;
	flex-wrap: wrap; 
}
.tabs label {
	order: 1; 
	display: block;
	padding: 1rem 2rem;
	margin-right: 0.2rem;
	cursor: pointer;
	color: white;
	background-color: rgba(97, 90, 99,0.9);
  font-weight: bold;
  transition: background ease 0.2s;
}
.tabs .tab {
  order: 99; 
  flex-grow: 1;
	width: 100%;
	display: none;
  padding: 1rem;
  background: #1984a8;
  	max-height: 550px;
	overflow: auto;
}
.tabs input[type="radio"] {
	display: none;
}
.tabs input[type="radio"]:checked + label {
	background-color: rgba(54, 49, 56,0.9);
}
.tabs input[type="radio"]:checked + label + .tab {
	display: block;
}

::-webkit-scrollbar {
width: 12px;
height: 12px;
}

::-webkit-scrollbar-track {
box-shadow: inset 0 0 10px olivedrab;
border-radius: 10px;
}

::-webkit-scrollbar-thumb {
border-radius: 10px;
background: yellowgreen; 
box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}

::-webkit-scrollbar-thumb:hover {
background: #7bac10;
}
