.pick-options-container {
    display: grid;
    place-items: center;
    padding-top: 120px;
    padding-bottom: 180px;
}

.pick-options-section {
    width: 400px;
    position: fixed;
    display: flex;
    justify-content: space-around;
}

.rock-button,
.paper-button,
.scissors-button {
    background-color: black;
    border: 1px dashed rgb(50, 50, 50);
    border-radius: 100%;
    height: 110px;
    width: 110px;
    padding: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.rock-button:hover,
.paper-button:hover,
.scissors-button:hover {
    transform: scale(1.1);
    filter: brightness(1);
}

.rock-button:active,
.paper-button:active,
.scissors-button:active {
    transform: scale(1) ;
}

.rock-img,
.paper-img,
.scissors-img {
    height: 50px;
}

.win-flash { box-shadow: 0 0 10px rgba(60, 231, 60, 0.8);}
.lose-flash { box-shadow: 0 0 10px rgba(255, 0, 0, 0.8); }


@media (max-width: 700px) {

    .pick-options-section { 
        width: 350px; 
    }

    .rock-button,
    .paper-button,
    .scissors-button {
        height: 100px;
        width: 100px;
    }
    
    .rock-img,
    .paper-img,
    .scissors-img { 
        height: 40px; 
    }
}

@media (max-width: 480px) {

    .pick-options-container {
        padding-bottom: 160px;
    }

    .pick-options-section { 
        width: 320px; 
    }

    .rock-button,
    .paper-button,
    .scissors-button {
        height: 90px;
        width: 90px;
    }

    .rock-img,
    .paper-img,
    .scissors-img { 
        height: 30px; 
    }
}

@media (min-height: 678px) {

    .pick-options-container {
        padding-top: 150px;
        padding-bottom: 170px;
    }
}

@media (max-width: 700px) and (max-height: 600px) {

    .pick-options-container { 
        padding-bottom: 150px; 
    }
}

