* {
    box-sizing: border-box;
}
.boxStart{
    position: relative;
    height:200px;
    width:200px;
    border: 1px solid red;
    background-color: black;
}
.ghost{
    position: absolute;
    height: 100%;
    width:80%;
    top:0;
    left:10%;
    border:1px solid black;
    border-radius: 20px;
    background-color: green;
    z-index: 3;
}
.btn{
    font-size: 2em;
    width:50%;
    display: block;
    padding:20px;
    margin: auto;
}

.eyes{
    position: absolute;
    display: inline-block;
    height: 30%;
    width: 30%;
    border-radius: 50%;
    bottom: 45%;
    background-color: white;
}
.eyeleft {
    left: 10%;
}
.eyeright {
    right:10%;
}
.eyes:after{
    position: absolute;
    bottom: 35%;
    content: " ";
    background-color: black;
    height: 50%;
    width: 50%;
    left:20%;
    border-radius: 50%;
}

.pacman{
    z-index: 2;
    position: absolute;
    height: 80%;
    width:80%;
    top:10%;
    left:10%;
    border-radius: 50%;
    background-color: yellow;
}

.eye {
    position: absolute;
    left: 20%;
    top:20%;
    width:20%;
    background-color: black;
    border-radius: 50%;
    height: 20%;
}
.mouth{
    position: absolute;
    left: 60%;
    bottom:35%;
    width: 40%;
    background-color: black;
    height: 10%;
}

.dot{
    position: absolute;
    left: 35%;
    top:35%;
    width: 25%;
    height: 25%;
    background-color: white;
    border-radius: 50%;
}
.superdot{
    position: absolute;
    left: 25%;
    top:25%;
    width: 50%;
    height: 50%;
    background-color: goldenrod;
    border-radius: 50%;
}

.wall{
    background-color: lightskyblue;
    width: 100%;
    height:100%;
}
.hideout {
    background-color: #333;
    width: 100%;
    height:100%; 
}
.grid{
    margin: auto;
    padding-top: 40px;
    justify-content: center;
    display: grid;
    cursor: grab;
    background-color: black;
    overflow: hidden;
}
.box{
    font-size: 3rem;
    text-align: center;
    position: relative;
}

.scoreBoard{
    background-color: black;
    text-align: center;
    font-size: 2em;
    color:white;
    padding: 20px;
}