@import url('https://fonts.googleapis.com/css2?family=Averia+Gruesa+Libre&display=swap');
html, body {
  	min-height: 400px;
	height: 100%;
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: 100%;
}
body {
	font-family: "Roboto", sans-serif;
	font-weight: 300;
	min-width: 512px;
}
.header_container {
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.body_container {
  background-image: url("/img/blue-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.body_container:before, .body_container:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 20%;
  background-color: #001234;
  z-index: 1;
}
.body_container:before {
  top: 0;
}
.body_container:after {
  bottom: 0;
}
.thin {
  font-weight: 400;	
}
.row {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
[class*="col-"] {
  padding: 0;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.col-2 {
  flex: 50%;
}
.col-3 {
  flex: 33%;
}
.col-4{
  flex: 25%;
}
.arrow {
  font-family: sans-serif;
  position: absolute;
  color: #fff;
  bottom: 24px;
  left: 50%;
  padding: 0;
  margin: 0;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%); 
}
.arrow:hover, .arrow:focus, .close:hover, .close:focus, .ss:hover, .ss:focus {
	cursor: pointer;
  	color: #ff55b2;
}
.p-title {
  font-family: 'Averia Gruesa Libre', cursive;
  position: relative;
  padding: 0;
  margin: 0;
  padding-left: 5%;
  padding-right: 5%;
  text-align: justify;
  white-space: pre-line;
  max-width: 480px;
}
.footer_logo {
  background-image: url("/img/wb-stamp.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 100px;
  margin-bottom: 24px;
}
.wb_logo {
  background-image: url("/img/wb-sticker.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 480px;
  height: 480px;
  animation: flipAndGrow 1s forwards;
}
.ts_logo {
  background-image: url("/img/tskotd-logo.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  height: calc((100vw) - 40px);
  max-width: 800px;
  max-height: 350px;
}
@keyframes flipAndGrow {
  0% {
    width: 0;
	height: 0;
	transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
  }
  100% {
    width: 480px;
	height: 480px;
	transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .wb_logo {
    animation: none;
  }
}
.color {
  color: #e5ac22;
  text-decoration: none;
}
.footer_container {
  background-color: #000;
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}
.copyright {
  padding: 0;
  margin: 0;
  margin-left: 10%;
  margin-right: 10%;
  font-size: 13px;
}
/* Desktop 768p */
@media only screen and (max-width: 768px) {
    html, body {
          min-height: 100%;
	}
	body {
		min-width: 100%;
	}
  	.header_container, .body_container {
		height: 100%;  
  	}
  	.wb_logo {
      width: 320px;
    }
	@keyframes flipAndGrow {
	  0% {
		width: 0;
		transform: rotateY(180deg);
		-ms-transform: rotateY(180deg);
		-webkit-transform: rotateY(180deg);
		-moz-transform: rotateY(180deg);
		-o-transform: rotateY(180deg);
	  }
	  100% {
		width: 320px;
		transform: rotateY(0deg);
		-ms-transform: rotateY(0deg);
		-webkit-transform: rotateY(0deg);
		-moz-transform: rotateY(0deg);
		-o-transform: rotateY(0deg);
	  }
	}
    [class*="col-"] {
	  flex-direction: column;
    }
    .row {
      flex-direction: column;
    }
}
/* Desktop 1080p */
@media only screen and (max-width: 1080px) {
  
}
/* Mobile devices landscape */
@media only screen and (min-device-width : 320px) and (max-device-width : 768px) and (orientation : landscape) {
    html, body {
          min-height: 100%;
	}
	body {
		min-width: 100%;
	}
  	.header_container, .body_container {
		height: 100%;
  	}
	.arrow {
	  bottom: 8px;	
	}
    .wb_logo {
      width: 240px;
    }
	.ts_logo {
		width: 50%;
	}
	@keyframes flipAndGrow {
	  0% {
		width: 0;
		transform: rotateY(180deg);
		-ms-transform: rotateY(180deg);
		-webkit-transform: rotateY(180deg);
		-moz-transform: rotateY(180deg);
		-o-transform: rotateY(180deg);
	  }
	  100% {
		width: 240px;
		transform: rotateY(0deg);
		-ms-transform: rotateY(0deg);
		-webkit-transform: rotateY(0deg);
		-moz-transform: rotateY(0deg);
		-o-transform: rotateY(0deg);
	  }
	}
    .row {
      flex-direction: column;
    }
}
/* Mobile devices portrait */
@media only screen and (min-device-width : 320px) and (max-device-width : 768px) and (orientation : portrait) {
    html, body {
          min-height: 100%;
	}
	body {
		min-width: 100%;
	}
  	.header_container, .body_container {
		height: 100%;   
  	}
    .row {
      flex-direction: column;
    }
}