html {
  box-sizing: border-box;
  font-size: 10px;
  background-image: url('img/whitehouse.jpg');
  background-size:cover;
}


}

body {
  padding: 0;
  margin: 0;
  font-family: 'Georgia', cursive;
}

h1 {
  text-align: center;
  font-size: 10rem;
  line-height: 1;
  margin-bottom: 0;
  margin-top: -5pt;
  color:red;
}

.score {
  background: rgba(255,255,255,0.2);
  padding: 0 3rem;
  line-height: 1;
  border-radius: 1rem;
  color:white;
}

.game {
  width: 600px;
  height: 400px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  /* margin-bottom:100pt; */
}

.noTrump {
  flex: 1 0 20%;
  overflow: hidden;
  position: relative;
}

.noTrump:after {
  display: block;
  background: url('img/Throne.jpg') bottom center no-repeat;
  background-size:contain;
  content: '';
  width: 100%;
  height:60pt;
  position: absolute;
  z-index: 2;
  bottom: -60px;
}

.don {
  background: url('img/don.jpg') bottom center no-repeat;
  background-size: 85%;
  position: absolute;
  top: 100%;
  width: 100%;
  height: 100%;
  transition:all 0.8s;
}

.noTrump.up .don {
  top: 0;
}
body {

}
button {
  
  width: 100pt;
  height: 50pt;
  background-image: url('img/flag.png');
  color:gold;
  font-size:20pt;
  cursor: pointer;
}
.impeach {
  position:absolute;
  border:5px solid green;
  background-image: url('img/impeach.jpg');
  width:220pt;
  height:150pt;
  background-size:cover;
  margin-bottom:-200pt;
  display:none;
  animation: mymove 8s ease-in ;

}
@keyframes mymove {
  /* from {top: -50px;}
  to {top: 400px;} */
0% {
  top: -50px;
}
50% {
  top:200px;
}
100% {
  top:400px;
}
}

.bernie {
  display:none;
  position:absolute;
  right:275px;
  border:5px solid green;
  background-image: url('img/bernie.gif');
  width:220pt;
  height:150pt;
  background-size:cover;
  margin-right:-200pt;
  animation: mymove 5s ease-in ;

}
#center {
  display:flex;
  justify-content: center;
}
