*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body
{
    width: 100%;
    height: 100%;
    background: radial-gradient(circle,#fff,#ccc);
}
#container
{
    height: 600px;
    width: 1050px;
    background-color: #8ed0ee;
    margin: 20px auto;
    padding: 20px;
    top: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 0px 0px #009de4;
    position: relative;
    
}
#score
{
    background-color: #f1ff92;
    color: #888e5f;
    padding: 10px;
    position: absolute;
    right: 10px;
    box-shadow: 0px 4px 0px 0px #9da853;
}
#fruitContainer
{
    width: 750px;
    height: 400px;
    background-color: #fff;
    margin: 50px auto 10px auto;
    font-size: 100px;
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    box-shadow: 0px 4px 0px 0px #535aa8;
    position: relative;
    overflow: hidden;
}
#instruction
{
    width: 450px;
    height: 50px;
    background-color: #8481d9;
    margin: 10px auto;
    text-align: center;
    line-height: 40px;
    box-shadow: 0px 4px 0px 0px #8153a8;

}
#startreset
{
    width: 100px;
    padding: 10px;
    background-color: rgba(255,255,255,.5);
    margin: 0 auto;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
    box-shadow: 0px 4px 0px 0px rgba(0,0,0,.2);
    position: relative;
}
#trialleft
{
    width: 150px;
    background-color: rgba(181,235,36,.8);
    padding: 10px;
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 3px;
    box-shadow: 0px 4px 0px 0px rgba(0,0,0,.2);
   /* display: none; */
}
#gameover
{
    height: 250px;
    width: 550px;
    background: linear-gradient(#f3ca6b,#f3706c);
    color: white;
    text-align: center;
    font-size: 40px;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: none;
    padding: 20px;
    border-radius: 10px;
}
.heart
{
    width: 20px;
    margin: 0px 10px;
    text-align: center;
}
.fruits
{
    display: none;
    position: absolute;
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.footer {
    background-color: #6fbbe2; /* matches your container's blue */
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0px -3px 5px rgba(0,0,0,0.2);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.footer h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.footer p {
    font-size: 14px;
    margin: 8px 0;
}

.footer .social-icons {
    margin-top: 15px;
}

.footer .social-icons a {
    margin: 0 10px;
    color: white;
    font-size: 20px;
    transition: transform 0.3s, color 0.3s;
}

.footer .social-icons a:hover {
    color: #fcd400;
    transform: scale(1.2);
}

.footer-content {
    max-width: 700px;
    margin: 0 auto;
}
