*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

#mainheading{
margin-top: 70px;
color: rgb(1, 148, 1);
}

body{
    background-color: #c3e44a;

}

.boxes{
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-around; */
    gap: 0px;
}
 #message{
    /* text-align: center; */
    margin-top: 80px;
    margin-left: 520px;
    margin-bottom: 0px;
    color: rgb(214, 84, 84);
    font-size: 3em;
    font-family: 'Arial', sans-serif;
   
}
.box{
   width: 100px;
    height: 100px;
    background-color: #fffc7f;
    border: solid 2px red;
    color: rgb(214, 84, 84);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 4em;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.8);
    transition: transform 0.9s ease, box-shadow 0.3s ease;
padding: 10px;
margin: 8px;

}
.container{
    width: 60vh;
    margin-left: 500px;
    /* margin-top: 110px; */
}
.hide{
    display: none;
}