body {
    background-color: #ffffff;
    background-image: url('rock-paper-scissors-seamless-pattern.webp');
    background-size: auto; 
    background-position: center; 
    background-repeat: repeat;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    color: brown;
    margin: 0;
    padding: 0;
}

.align_central {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}
section img {
    width: 175px;
    height: 175px;
    object-fit: cover;
    opacity: .8;
    transition: .5s ease;
}

section img:hover {
    cursor: pointer;
    width: 200px;
    opacity: 1;
    filter: contrast(120%);
}

.button {
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    border: none;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 30px;
    color: rgb(209, 39, 39);
    text-decoration: normal;
    text-align: center;
    -o-text-overflow: clip;
    text-overflow: clip;
    white-space: pre;
    text-shadow: 0 0 10px rgb(255, 94, 94) , 0 0 20px rgb(141, 35, 35) , 0 0 30px rgb(187, 33, 33) , 0 0 40px #ffa4a9 , 0 0 70px #ff9797 , 0 0 80px #ff9e9e , 0 0 100px #ff9898 ;
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  }
  
  .button:hover {
    text-shadow: 0 0 10px rgb(255, 194, 80) , 0 0 20px rgb(255, 201, 52), 0 0 30px rgb(255, 236, 69) , 0 0 40px #f8a711 , 0 0 70px #ffd517 , 0 0 80px #ffd23c , 0 0 100px #ffce2d ;
}

.img {
    height: 175px;
    width: 175px;
    align-items: center;
    cursor: pointer;
    }
    .img:hover {
    filter: hue-rotate(25deg);    
}


.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    background: linear-gradient(to bottom, rgba(236, 252, 95, 0.9), rgba(255, 140, 32, 0.95));
    padding: 10px;
}

.central-button {
    align-items: center;
    margin-top: 150px;
    margin-bottom: 150px;
    margin-left: 150px;
    margin-right: 150px;
}


.button-style {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 20px; 
    align-self: flex-start; 
  }
  .button-style:hover {
    background-color: #45a049;
  }
  .button-style:active {
    background-color: #3e8e41;
  }

.header {
    flex-grow: 1;
    text-align: center; 
    font-size: 27px;
    margin: 0;
    margin-right: 175px;
}

.modal-content {
    background-color: #ffcf32;
    margin: auto;
    padding: 20px;
    border: 1px solid #ff0000;
    width: 80%;
    max-width: 600px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.result-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.player-choice, .cpu-choice {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 30px;
}
.player-choice img, .cpu-choice img {
    width: 30px;
    height: 30px;
}
