* {
    margin: 0;
    padding: 0;
}

html{
   margin: 0;
    padding: 0;
}

body{
    font-family: monospace;
}

.imgg{
    text-align: center;
    background-color: black;
    padding: 2px;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color:#212529;
}

.foot-p{
   color: wheat;
   margin-top: 10px;
}

.bg{
    width: 100%;
    height: 10%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

.card{
    margin: 10px;
    height: 100%;
    width: 100%;
    background-color: black;
    border-radius: 15px;
    padding: 12px 12px 12px 12px;
    text-align: center;
}

.title{
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 4px;
    font-weight: bold;
    color: white;
}

#score{
    padding: 10px;
    font-size: 15px;
    border-radius: 4px;
    border: 1px solid grey;
    width: 100%;
    text-align: center;
}

.btn{
    padding: 10px 5px;
    margin: 20px 0px;
    cursor: pointer;
    color: white;
    transition: 0.9s all ease;
}

.btn1{
    background-color: green;
}

.btn1.hover{
    background: none;
    border: 2px solid green;
    border-radius: 5px;
}

.btn2{
    background-color: red;
}

.btn2.hover{
    background: none;
    border: 2px solid red;
    border-radius: 5px;
}

.screen{
    width: 90%;
    height: 80px;
    border-radius: 5px;
    background-color: black;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    margin: 0 auto;
    color: white;
    border: 2px solid lightgrey;
}

p{
    color: white;
    margin: 4px 0 0 0;
    font-weight: bold;
}