* {
  box-sizing: border-box;
}

body {
  background: #f5f5f5;
  font-family: "Montserrat", sans-serif;
}

header {
  margin-top: 50px;
  margin-bottom: 20px;
}

header img {
  max-width: 350px;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.page-wrapper {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.card-wrapper,
img {
  max-width: 812px;
  width: 100%;
  display: block;
  object-fit: contain;
}

.card-wrapper {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 0.5rem rgb(121, 121, 121);
  width: 80%;
  max-width: 812px;
  margin-bottom: 20px;
  margin-top: 20px;

  transition: all 200ms ease; // Animation
}

.card-wrapper:hover {
  -webkit-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
}

.card-bottom {
  padding: 15px 30px;
  align-items: center;
}

.card-bottom,
p {
  color: white;
  font-weight: bold;
  margin-top: 0px;
  margin-bottom: 0px;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
}

.card-bottom.abgc {
  /* background: rgba(86, 78, 96, 1); */
  background: rgb(78, 68, 89);
}

/* Game Specifics  */
.card-bottom.letterrooms {
  background: #747de4;
  //background: linear-gradient(90deg, #747DE4 0%, #E47474 100%);
}

.card-bottom.subwords {
  background: rgb(71, 183, 202);
  //background: linear-gradient(90deg, rgba(71,183,202,1) 0%, rgba(229,82,81,1) 100%);
}

.card-bottom.asymmetric {
  background: rgba(221, 163, 232, 1);
  //background: linear-gradient(90deg, rgba(12,151,199,1) 0%, rgba(221,163,232,1) 100%);
}

.card-bottom.elementary {
  background: rgba(228, 81, 56, 1);
  /* background: linear-gradient(90deg, rgba(141,163,116,1) 0%, rgba(255,62,30,1) 100%); */
}

.card-bottom.sws {
  //background: #29B7A0;
  background: #7E5CCB;
  /* background: linear-gradient(90deg, rgba(141,163,116,1) 0%, rgba(255,62,30,1) 100%); */
}

.button-learn-more {
  border: 2px solid white;
  background: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  /* display: inline-block; */
  font-size: 16px;
  border-radius: 20px;

  transition: all 200ms ease; // Animation
}

.button-learn-more:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

hr.rounded {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 30%;
  border: 2px solid grey;
  height: 2px;
  border-radius: 7px 7px 7px 7px;
}

footer {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;

  font-family: "Montserrat", sans-serif;
}

footer h1 {
  font-size: 42px;
}

.about-me {
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
}

.about-me-column {
  flex: 33.33%;
  padding: 10px;
}

.contact {
  text-align: center;
}

.contact-email a {
  font-size: 28px;
  text-decoration: none;
  color: rgb(117, 126, 221);
  transition: all 200ms ease; // Animation
}

.contact-email a:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.socialme a {
  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: rgb(117, 126, 221);
  transition: all 200ms ease; // Animation
}

.socialme a:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

address {
  margin-top: 10px;
  font-size: 20px;
  font-style: normal;
}
