* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

.container {
  min-width: 320px;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

body {
  background-image: url(images/background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

main {
  display: flex;
  align-items: center;
  height: 70vh;
  /* border: 1px solid red; */
  min-width: 320px;
  max-width: 900px;
  margin: 0 auto;
}

header {
  width: 105%;
  height: 15vh;
  background: #2c3e50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.redes {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-bar {
  width: 70%;
}

.redes-link img {
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
}

.gameboard {
  height: 100vh;
  width: 100vh;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  max-height: 60vh;
  max-width: 60vh;
}

.color {
  width: 50%;
  height: 50%;
  display: inline-block;
}

.left {
  float: left;
}

.right {
  float: left;
}

.celeste {
  background: #22a6b3;
}

.celeste.light {
  background: #7ed6df;
}

.violeta {
  background: #be2edd;
}

.violeta.light {
  background: #e056fd;
}

.naranja {
  background: #f0932b;
}

.naranja.light {
  background: #ffbe76;
}

.verde {
  background: #6ab04c;
}

.verde.light {
  background: #badc58;
}

.btn-start {
  width: 70px;
  height: 40px;
  font-size: 1rem;
  border-radius: 1.5rem;
  border: transparent;
  box-shadow: 1px 1px 8px 1px rgba(248, 210, 210, 0.9)
}

footer {
  background: #2c3e50;
  color: #fff;
  height: 15vh;
  width: 105%;
}

.espacio {
  padding: 0.5rem;
}

.description {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

footer img {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.5rem;
}


.hide {
  display: none;
}