*{
    margin: 0;
    padding: 0;
}

body{
    background-color: #3D0814;
    text-align: center;
    align-content: center;
    justify-items: center;
}

h1{
    color: #E7F9A9;
    font-size: 6vmin;
    padding-bottom: 10px;
    margin-top: 15px;
}

.container{
    height: 67vh;
    width: 67vh;
    background-color: #551631;
    align-content: center;
    justify-items: center;
    border-radius: 6px;
    box-shadow: 0 0 30px rgba(85, 22, 49, 0.9);
    margin-top: 15px;
}

.game{
    height: 60vh;
    width: 60vh;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    align-items: center;
    position: relative;
}

.box{
    height: 18vmin;
    width: 18vmin;
    background-color: #C6B38E;
    border-radius: 6px;
    border: none;
    font-size: 8vmin;
    color: #442F38;
}

.btn1{
    width: 100px;
    height: 30px;
    margin-bottom: 20px;
    background-color: #551631;
    color: #b5b73f;
    border: none;
    box-shadow:
  0 0 5px #C6B38E,
  0 0 1600px #551631;
}

.btn2{
    width: 100px;
    height: 30px;
    margin-top: 5px;
    margin-bottom: 20px;
    background-color: #551631;
    color: #b5b73f;
    border: none;
    box-shadow:
  0 0 5px #C6B38E,
  0 0 40px #551631;
}

.msgContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(61, 8, 20, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
}

.hide {
    display: none;
}

.win-line {
  position: absolute;
  background-color: #3D0814;
  border-radius: 1vmin;
  height: 4px;
  width: 0;
  opacity: 0.9;
  transition: width 1.2s ease;
  transform-origin: left center;
  z-index: 5;
}
