@font-face {
  font-family: persona;
  src: url(media/fonts/Persona.ttf);
}

body {
  background-image: url("./media/CitySkylineP5.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  font-family: persona;
  color: white;
  font-size: 24px;
  text-align: center;
  scroll-behavior: smooth;
  overscroll-behavior: none;
}
h1{
    margin: 10px 10px;
}
button{
    background: none;
	color: inherit;
	border: 1px solid white;
	padding: 0;
    margin: 5px;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.backdrop{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, .4);
}
.win-modal {
    width: 300px;
    height: 30vh;
    background-color: black;
    border: 1px solid white;
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%, -50%);
}
.restart{
    position: absolute;
    bottom: 5px;
}

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

.column {
  display: flex;
  flex-direction: column;
}

.cell {
  height: 90px;
  width: 90px;
  border: 2px solid white;
  border-radius: 10px;
}

.red-token {
  background-color: red;
  background-image: url("./media/jokerRed.png");
  background-size: contain;
  border-radius: 50%;
  height: 85px;
  width: 85px;
}

.black-token {
  background-color: white;
  background-image: url("./media/jokerBlack.jpeg");
  background-size: contain;
  border-radius: 50%;
  height: 85px;
  width: 85px;
}
