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

.classic-images-container,
.difficult-images-container,
.main-container {
  display: flex;
}

.main-container {
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
}

@font-face {
  font-family: "SourceCodePro";
  src: url("./assets/SourceCodePro-VariableFont_wght.ttf");
}

html {
  color: #ffffff;
  font-family: "SourceCodePro";
  font-size: calc(1em + 1vw);
  text-align: center;
}

body,
html {
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  vertical-align: baseline;
}

img {
  display: inline;
  width: 15vw;
}

h1 {
  background: linear-gradient(to right, white, midnightblue 50%, #41e0e0 50%);
  background-clip: text;
  background-position: 100%;
  background-size: 200% 100%;
  color: #ffffff;
  font: bold;
  font-family: "SourceCodePro";
  font-size: 50px;
  font-weight: 800;
  transition: background-position 275ms ease;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  word-spacing: -20px;
}

h1:hover {
  background-position: 0 100%;
}

h2 {
  color: #ffffff;
  font-family: "SourceCodePro";
  font-size: 30px;
}

h2:hover {
  text-decoration: line-through;
}

h3 {
  color: #ffffff;
  font-family: "SourceCodePro";
  font-size: 25px;
  font-weight: bold;
}

h4 {
  color: #ffffff;
  font-family: "SourceCodePro";
  font-size: 20px;
  font-weight: 200;
  margin-bottom: 25px;
  padding: 20px;
}

p {
  color: #ffffff;
  font-size: 2vw;
  font-weight: 300;
  line-height: 1.2em;
  margin: 1em 0 1.2em 0;
}

.left-sidebar {
  background-color: #340c49;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
  float: left;
  justify-content: center;
  width: 25%;
}

.change-game {
  color: #ffffff;
  font-size: 1vw;
  margin-top: 100px;
  padding: 1vw;
  text-transform: uppercase;
}

.main {
  align-items: center;
  background-color: #681094;
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 5em;
  width: 85%;
}

.right-sidebar {
  background-color: #340c49;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 25%;
}

.select-game-option {
  font-size: 1.5rem;
  justify-content: center;
  padding: 15px;
  padding-bottom: 0px;
  margin-top: 40px;
}

.button {
  background-color: #9d35d2;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  padding-top: 20px;
}

.change-button {
  background-color: #9d35d2;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  font-weight: 300;
  line-height: 2;
  padding: 5px;
  text-transform: uppercase;
}

.button:hover,
.change-button:hover {
  background-color: #ffffff;
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
  color: #9d35d2;
}

p:hover,
h3:hover {
  background-color: #ffffff;
  color: #9d35d2;
}

.hidden {
  display: none;
}

.classicFighters,
.difficultFighters {
  cursor: pointer;
}

.classicFighters {
  display: flex;
  margin-top: 75px;
}

.difficultFighters {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 200px 500px;
  position: relative;
}

.computer-title,
.human-title {
  font-family: "SourceCodePro";
  font-size: 20px;
}

.computer-emoji,
.human-emoji {
  font-size: 30px;
  line-height: 2;
  vertical-align: middle;
}
