.space {
    margin-bottom: 10px;
}
.container {
    display: flex;
    justify-content: space-evenly;
}
button {
    background-color: #205ed1;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    border: 3px solid #001a70;
    padding: 3px 6px;
    transition: background-color 200ms ease-in-out;
}
button:hover {
    background-color: #3f7ef1;
}
.cbtn {
    margin-top: 5px;
}
.score1 { position: relative; }
.score2 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}
body {
    text-align: center;
    font-family: verdana;
    background-color: #111111;
    color: white;
}
.pbtn {
    background-color: rgb(250, 250, 250);
    transition: background-color 0.2s ease-in-out;
}
.pbtn:hover {
    background-color: rgb(0, 204, 255);
}
.title {
    text-align: center;
    font-size: 20px;
}

.drop {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.drop ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: block;
}
.drop img {
  width: 30px;
  height: 30px;
}

.drop li {
  float: left;
}

.drop li .d-a, .dropbtn {
  display: inline-block;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.drop li .d-a:hover, .dropdown:hover .dropbtn {
  background-color: #242424;
}

.drop li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown:hover .dropdown-content {
  display: block;
}

input {
  background-color: #242424;
  color: white;
}