@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Irish+Grover&family=Poppins:ital,wght@0,400;0,500;0,600;1,700&display=swap');

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


body {
    background-color: black;
    background-image: url('assets/bg.png');
    color: white;
    font-family: 'Poppins', 'sans-serif';
    background-repeat: no-repeat;
}


a {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    margin: 0 1rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem;
}

#game-base{
  width:640px;  
  margin:0 auto;
  padding-top:60px;
  /* background-color: tomato; */
}


.disc{
  position:absolute;
  z-index:1;
  top:-55px;
  left:14px;
  width:46px;
  height:46px;
  border-radius:46px;
  transition:all .3s;
}

.disc.red{
  background:#fff;
}

.disc.yellow{
  background:#ffeb79;
}

.bar {
    width: 434px;
    height: 20px;
    background-color: white;
    margin: 0 auto;
}


#game-table{
  width:434px;
  height:374px;
  margin:0 auto;
  background-color: #343232;
  position:relative;
}

section {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

video {
    width: 434px !important;
    height: auto !important;
}

.turn {
  font-family: 'Creepster', 'sans-serif';
    font-size: 4.5rem;
    letter-spacing: 0.25rem;

}


.ghost {
  width: 80px;
  margin:0   10rem;
}