*{
    margin:0;
    padding:0;
}

body{
    background-color: khaki;
}

.container{
    background-color: lavender;
    margin:80px;
    display: flex;
    align-items: center;
    border: 2px solid grey;
    justify-content: space-evenly;
    padding:10px;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 1px 1px 10px grey;
}

.start{
    background-image: linear-gradient(to right,lavender, rgba(213, 213, 235, 0.295));
}

#player-1,#player-2{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 500px;
}
.player-name{
    font-size: larger;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#player-1 div,#player-2 div{
    margin:10px;
}
#selected-1,#selected-2{
    
    height: 150px;
    width: 150px;
}

#choices-1 img{
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: inline-block;
}   
#choices-1,#choices-2{
    height: 50px;
}

#disp{
display: flex;
flex-direction: column;
align-items: center;
color: rgb(245, 87, 87);
font-size: 35px;
font-weight: bold;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#disp hr{
    width: 25px;
}
#disp div{
    margin:5px;
}
.btn{
    padding:4px;
    background-color: white;
    display: block;
    border-radius:5px 5px 5px 5px;
    cursor:pointer;
}


.winner-1 img{
    z-index: 50;
    position:absolute;
    left:200px;
}
.winner-2 img{
    z-index: 50;
    position:absolute;  
    right:200px;
}

@media only screen and (max-width: 850px) {
   
    .container{
        flex-wrap: wrap;
        padding:5px;
        width:280px;
        margin:auto;
        
    }
    .conatiner #player-1,#player-2,#disp{
        margin:25px;
    }
  }

  @media only screen and (max-width: 550px) {
   
  .winner-1 img{
    z-index: 50;
    position:absolute;
    left:130px;
}
.winner-2 img{
    z-index: 50;
    position:absolute;  
    right:130px;
}
  }

  @media only screen and (max-width: 450px) {
   
    .winner-1 img{
      z-index: 50;
      position:absolute;
      left:50px;
  }
  .winner-2 img{
      z-index: 50;
      position:absolute;  
      right:50px;
  }
    }