* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.style {
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-style: normal;
}


body {
    background-color: #7d60a8;
    text-align: center;
    animation-name: my-animation;
    animation-duration: 1s;
}

.hide {
    display: none;
}

#hero {
    text-align: center;

}

@keyframes my-animation {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.msg-box {
    position: absolute;
    top: 100px;
    bottom: 0;
    height: 63vh;
    align-items: center;
    animation-name: my-animation;
    animation-duration: 1s;
   
}

.msg {
    font-size: 80px;
    font-weight: bold;
    color: rgb(216, 255, 62);
    flex-direction: column;

}


.container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    
}

.game {
    height: 58.5vmin;
    width: 59vmin;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 11px;
    row-gap: 10px;

}

.box {
    height: 18vmin;
    width: 18vmin;
    border: none;
    box-shadow: 0 0 6px black;
    font-size: 14vmin;
    color: black;
    background-color : #a76dfc;


}

.reset-btn {
    padding: 10px;
    border-radius: 25px;
    border: none;
    box-shadow: 0 0 6px white;
    background-color: #191913;
    color: aliceblue;
    font-size: 20px;
}

.win {
    padding: 8px;
    border-radius: 15px;
    border: none;
    box-shadow: 0 0 6px white;
    background-color:red;
    color: black;
    font-size: 20px;
}

.turn1 {
  
    color: aliceblue;
    font-size: 30px;
    font-weight: bold;
    padding: 15px;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    animation-name: my-animation;
    animation-duration: 1s;
}

.turn2 {
    color: aliceblue;
    font-size: 30px;
    font-weight: bold;
    padding: 15px;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    animation-name: my-animation;
    animation-duration: 1s;
}