body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: white;
    font-size: large;
    background-image: url('dark-gaming-background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
}


.container {
  height: 400px;
  max-width: 800px;
  margin: 20px auto;
  overflow: hidden;
  border: 2px solid #333;
  position: relative;
  background: linear-gradient(to bottom, rgba(6, 38, 56, 0.6), rgba(6, 38, 56, 0.8)); /* Smooth gradient background */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}


.game-title {
    text-align: center;
    font-size: 2em;
    color: #fff;
    margin-top: 20px;
}


.lives {
    font-size: 2em;
    color: #ffffff;
    margin: 10px;
    text-align: center;
}
.score{
    font-size: 2em;
    color: #ffffff;
    margin: 10px;
    text-align: center;
}

.brick {
    position: absolute;
    width: 90px;
    height: 30px;
    background-color: #ff6347;
    border: 2px solid #fff;
    border-radius: 5px;
    font-size: 1.5em;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    animation: brickAnimation 0.5s ease-in-out infinite alternate;
}

@keyframes brickAnimation {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(10px);
    }
}
