@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #588157;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.navbar a {
    font-size: 18px;
    color: #FAEDCD;
    text-decoration: none;
    font-weight: 400;
    margin-left: 35px;
}

.navbar a:hover, .navbar a.active {
    color: #D4A373;
}

.container {
    padding: 2rem 7rem;
    border-radius: 14px;
    background: #faedcd;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.result_images {
    display: flex;
    column-gap: 7rem;
}

.container.start .user_result {
    transform-origin: left;
    animation: userShake 0.7s ease infinite;
}
@keyframes userShake {
    50% {
        transform: rotate(10deg);
    }
}

.container.start .cpu_result {
    transform-origin: right;
    animation: cpuShake 0.7s ease infinite;
}
@keyframes cpuShake {
    50% {
        transform: rotate(-10deg);
    }
}

.result_images img {
    width: 100px;
}

.user_result img {
    transform: rotate(90deg);
}

.cpu_result img {
    transform: rotate(-90deg) rotateY(180deg);
}

.result {
    text-align: center;
    font-size: 2rem;
    color: #d4a373;
    margin-top: 1.5rem;
}

.option_image img {
    width: 50px;
}

.option_images {
    display: flex;
    align-items: center;
    margin-top: 2.5rem;
    justify-content: space-between;
}

.container.start .option_images {
    pointer-events: none;
}

.option_image {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.option_image:hover {
    opacity: 1;
}

.option_image.active {
    opacity: 1;
}

.option_image img {
    pointer-events: none;
}
.option_image p {
    color:#d4a373;
    font-size: 1.235rem;
    margin-top: 1rem;
    pointer-events: none;
}

.points {
    position: fixed;
    top: 20px;
    right: 10px;
    font-size: 18px;
    color: #FAEDCD;
    background-color: #D4A373;
    padding: 8px;
    border-radius: 5px;
}
