* {
    box-sizing: border-box;
    
}

#msg {
    background-color: black;
    color: white;
    height: 50px;
    display: flex;
    justify-content: center;
    font-size: 30px;
}

html {
   background-image: url(https://t3.ftcdn.net/jpg/03/49/67/76/360_F_349677668_dCQUwNDDHZagmThrdDOJ3UymDBZ9Jx0m.jpg);
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: black;
    margin-top: 30px;
}

h1 {
    display: flex;
    justify-content: center;
    color: Black;
    font-size: 50px;
    flex-wrap: wrap; 
    border: 2px solid rgb(97, 223, 35);
}

h2 {
    border: 4px solid rgb(97, 223, 35);
    background-color: black; 
    color: red;
    width: 150px;
    text-align: center;
    margin-right: 20px;
}

div {
    display: flex;
    justify-content: center; 
    height: 180px;  
}

footer {
    display: flex;
    justify-content: center;
    align-items: flex-end;   
}

.bottom {
    margin: 5px;
    height: 75px;
    width: 75px;
    border: 2px solid rgb(97, 223, 35);
    background-color: blue;
    color: white;
    font-size: 25px;;
    border-radius: 30%;  
}


#restart {
    margin: 5px;
    height: 75px;
    width: 100px;
    border: 2px solid rgb(97, 223, 35);
    background-color: blue;
    color: white;
    font-size: 25px;;
    border-radius: 30%;  
}

#chips1 {
    border-radius: 50px;
    height: 70px;
    width: 70px;
    background-color: yellow;
    color: black;
    border: 6px dashed black;
    font-style: oblique;
    font-weight: bolder;
    font-size: 20px;
    text-decoration: underline;
    margin: 10px;
}

#chips2 {
    border-radius: 50px;
    height: 70px;
    width: 70px;
    background-color: red;
    color: black;
    border: 6px dashed black;
    font-style: oblique;
    font-weight: bolder;
    font-size: 20px;
    text-decoration: underline;
    margin: 10px;
    
}

.class {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}









