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

body {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background: #f8d353;
  background: -webkit-linear-gradient(top left, #f8d353, #ff5c5a);
  background: -moz-linear-gradient(top left, #f8d353, #ff5c5a);
  background: linear-gradient(top left, #f8d353, #ff5c5a);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

h1 {
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  text-align: center;
}

h2,
h3,
p {
  font-family: "Poppins", sans-serif;
  text-align: center;
}

img {
  width: 20%;
  height: 20%;
}

button {
  background: rgba(245, 245, 245, 0.432);
}

.container {
  margin-top: 5%;
  display: flex;
  height: 40vh;
  flex-wrap: wrap;
  flex-direction: row;
}

.card {
	flex: 1;
	width: calc(50% - 5px);
}

.gem-container {
    display: flex;
    height: 60vh;
    flex-direction: row;
  }

.win-loss-card, .score-card, .intro-card {
    background-color: rgba(245, 245, 245, 0.432);
}

/* #wins, #losses {
  font-size: 1.7em;
}

#matchScore, #roundScore {
  font-size: 1.5em;
} */

.card > p > span, .card > p {
  font-size: 0.9em;
}

/* Media queries for mobile devices */
@media all and (orientation:portrait) {
  .gem-card {
    padding-left: 10%;
    padding-top: 15%;
  }
  .win-loss-card, .score-card, .intro-card {
    padding-top: 7%;
    font-size: 1.2em;
  }
}

@media all and (orientation:landscape) { 
  .gem {
  flex: 1;
	border: 1px solid rgba(0, 0, 0, 0.705);
  width: calc(48% - 5px);
  }
  .gem-card {
    padding-left: 5%;
    padding-top: 5%;
  }
  .win-loss-card, .score-card, .intro-card {
    padding-top: 4%;
    font-size: 1.2em;
  }
}

/* with screen size at 738px or more, increase font size */
/* @media only screen and (min-width: 738px) {
  #wins, #losses {
    font-size: 4em;
  }
  
  #matchScore, #roundScore {
    font-size: 4em;
  }
} */

/* with screen size at 738px or less, decrease font size */
/* @media only screen and (max-width: 738px) {
  #wins, #losses {
    font-size: 1.7em;
  }
  
  #matchScore, #roundScore {
    font-size: 1.5em;
  }
} */