* {
  margin: 0px;

}

body {
  background-color: #c7ebfc;
  color:black;
  margin: auto;
}
#opening {
  height: 85vh;
  background-color: #c7ebfc;
  padding: 0%;
}
#badge {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  justify-content: center;
  background-color:#c7ebfc;
}
#badge img {
  margin: 105px 0px 0px 25px;
  width: fit-content;
}
#header {
  background-color: #c7ebfc;
}
h1 {
  font-size: x-large;
  color: black;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  justify-content: center;
  /* top | right | bottom | left */
  margin: 25px 0px 0px 0px;
}
h2 {
  font-size: x-large;
  color: black;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  justify-content: center;
  margin: 20px 0px 0px 0px;
  padding: 25px;
}
.wtf-container {
  display: grid;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  background-color: #c7ebfc;
  margin: 0px 0px 150px 190px;
  width: 100%;
}
img {
  object-fit: cover;
  width: 320px;
  height: 450px;
}
.card-container {
perspective: 1000px;
  margin-top: 125px;
}
.card-container:hover .card, .card-container.hover .card {
  transform: rotateY(180deg);
}

.card-container, .front, .back {
width: 320px;
height: 450px;
}
.card {
transition: 0.6s;
transform-style: preserve-3d;
cursor:crosshair;
position: relative;
}
.front, .back {
backface-visibility: hidden;

position: absolute;
top: 0;
left: 0;
}
.front {
z-index: 2;
  transform: rotateY(0deg);
  background-color: #c7ebfc;
  object-fit: cover;
}
.back {
  transform: rotateY(180deg);
  background-color: blue;
}
.row {
  display: flex;
  /* top | right | bottom | left */
  padding: 0px 0px 0px 20px;
  width: 98%;
}
.column {
  float: left;
  height: 450px;
  width: 45%;
  justify-content: center;
  margin: 0px 0px 20px 0px;
  padding: 2px 2px 2px 2px;
  object-fit: cover;
  text-align: center;
  font-size: 34px;
}
footer {
  margin: 10px 0px 10px 0px;
  background-color: blue;
  padding: 10px;
  z-index: 0;

}
footer a {
  color: gold;
  text-decoration: underline;
  position: relative;
  clear: both;
}