@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Barlow Semi Condensed", sans-serif;
    margin: 0%;
}

.rules-heading {
    text-align: center;
    padding: 80px;
    color: hsl(229, 25%, 31%);
}

.rules {
    padding: 100px 50px;
}

.container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.cross {
    padding: 80px;
}

.top-div {
    border: 1px solid hsl(246, 11%, 37%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-radius: 15px;

}

.score {
    background-color: beige;
    border-radius: 15px;
    color: hsl(229, 25%, 31%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 60px;
    padding: 10px 10px 0px;
}

.score-value {
    color: hsl(246, 11%, 37%);
    font-weight: 600;
    font-size: 80px;
}

.container-step-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    height: 100vh;
    background: linear-gradient(hsl(214, 47%, 23%), hsl(237, 48%, 15%));
}

.main {
    display: flex;
    justify-content: center;
}

.pick {
    position: relative;
    padding: 30px;

}

.circle {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    background-color: beige;
    display: flex;
    justify-content: center;
    align-items: center;

}

.circle-step-2 {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    background-color: hsl(229, 25%, 31%);
    display: flex;
    justify-content: center;
    align-items: center;

}

.centre {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.step-2-p {
    color: aliceblue;
    font-size: 20px;
    font-weight: 600;
}

.button {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rock {
    background-color: hsl(349, 71%, 52%);
    bottom: 15px;
    left: 120px;

}

.paper {
    background-color: hsl(230, 89%, 62%);
    top: 10px;
    left: 20px;
}

.scissors {
    background-color: hsl(39, 89%, 49%);
    top: 10px;
    right: 20px;
}

.rules-button-div {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 0px 40px;
}

.button:hover {
    /*Darker blue*/
    transform: translateY(-2px);
    /* Slightly lifts the button up */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    /* Adds a soft shadow */
}

.rock:hover {
    background-color: hsl(347, 75%, 35%);
}

.paper:hover {
    background-color: hsl(229, 64%, 46%);
}

.scissors:hover {
    background-color: hsl(28, 76%, 44%);
}

.rules-button {
    padding: 10px 40px;
    border: 3px solid hsl(246, 11%, 37%);
    background-color: transparent;
    font-size: 20px;
    color: beige;
    border-radius: 10px;
}

.container-step-2 {
    display: flex;
    justify-content: center;
}

.result-div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.result{
    color: beige;
    font-size: 50px;
    margin-bottom: 5px;
}
.play-again{
    border-radius: 10px;
    color: hsl(229, 25%, 31%);
    background-color: beige;
    padding: 15px 70px;
    font-size: 20px;
}
















.hidden {
    display: none;
}