*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;

}
#firstdiv{
    height: 100px;
    width: 100%;
    background-color: #192534;
    display: flex;
    justify-content: center;
    color: white;
    align-items: center;
    font-size: 3rem;
}

#seconddiv{
    height: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
      flex-wrap: wrap;

}

.sdiv{
       height: 200px;
       width: 200px;
       background-color: #192534;
       font-size: 8rem;
       display: flex;
       justify-content: center;
       align-items: center;
       border-radius: 50%;
       border: 7px solid transparent;

}

#rock{
     background-color: lightcoral;
}

#paper{
     background-color: paleturquoise;
}

#scissors{
     background-color: violet;
}

#rock:hover {
  border-color: #d54228;  /* Tomato red - slightly darker than lightcoral */
  cursor: pointer;
}

#paper:hover {
  border-color: #148b7f;  /* Turquoise - stronger accent */
  cursor: pointer;
}

#scissors:hover {
  border-color: #8A2BE2;  /* BlueViolet - deeper, nice contrast */
  cursor: pointer;
}

#score-board{
    height: 200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
     flex-wrap: wrap;
}

.board{
  height: 180px;
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
      font-size: 2.5rem;

}

#lastdiv{
    height: 140px;
    width: 100%;
    display: flex;
    justify-content: center;
}

#lastdivpart{
    width: 80%;
    height: 80px;
     max-width: 500px;
    background-color:  #192534;
    color: white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;

    
}

#myscore{
   height: 100%;
   width: 150px;
}


@media (max-width: 600px) {
    #firstdiv {
        font-size: 2rem;
        height: 80px;
        margin-bottom: 60px;
    }

    .sdiv {
        height: 130px;
        width: 130px;
        font-size: 4rem;
    }

    .board {
        width: 130px;
        height: 120px;
        font-size: 1.8rem;
    }

    #lastdivpart {
        font-size: 1.5rem;
    }
}


@media (min-width: 600px) and (max-width: 700px) {
    #seconddiv {
        gap: 25px;        /* reduce gap between emojis */
        justify-content: space-around;  /* better spacing */
    }

    .sdiv {
        height: 150px;    /* reduce button size */
        width: 150px;
        font-size: 4rem;  /* shrink emoji slightly */
    }

    #score-board {
        gap: 20px;        /* reduce scoreboard gap */
    }

    #lastdivpart {
        font-size: 2rem;  /* adjust result text */
    }
}