@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 100%;
}
body {
  /* position: relative; */
  font-family: 'Nunito', sans-serif;
  min-height: 100vh;
  min-width: 100%;
  background: linear-gradient(
    to left top,
    #753682,
    #922b76,
    #a92164,
    #b8214d,
    #bf2e34
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* 
=========================================
PARENT DIV AND CHILD DIV
=========================================
 */
.parent {
  position: relative;
  width: 65%;
  min-height: 600px;
  /* background-color: aqua; */
  margin: auto;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 3rem 5rem rgb(0 0 0 / 25%);
}
.child {
  width: 50%;
  min-height: 600px;
  /* background-color: white; */
  padding: 3.5rem 0;
  text-align: center;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
}
.child > div {
  margin-top: 2rem;
}
.child h1 {
  font-size: 2.5rem;
  color: #333;
}
.child p {
  font-size: 6rem;
  font-weight: 500;
  color: #c7365f;
}
.child1 {
  /* border-right: 1px solid orange; */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background-color: rgba(255, 255, 255, 0.4);
}
.parent .child .current {
  background-color: #c7365f;
  width: fit-content;
  margin: auto;
  padding: 1rem 4rem;
  border-radius: 8px;
  margin-bottom: 0;
}
.parent .child .current p {
  font-size: 1.3rem;
  color: white;
  text-transform: uppercase;
}
.parent .child .current .current-score {
  margin-top: 1rem;
  font-size: 3.5rem;
}
@media screen and (max-width: 1360px) {
  .parent {
    width: 75%;
  }
}
@media screen and (max-width: 1200px) {
  .parent {
    width: 85%;
  }
}
@media screen and (max-width: 1000px) {
  .parent {
    width: 95%;
  }
}
/* 
=========================================
BUTTONS
=========================================
 */
.btn {
  text-transform: uppercase;
  color: #444;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  width: fit-content;
  font-size: 1.2rem;
  font-family: 'Nunito', sans-serif;
  padding: 0.5rem 1.5rem;
  border-radius: 35px;
  border: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 3rem 5rem rgb(0 0 0 / 25%);
  cursor: pointer;
  transition: transform 0.4s;
}

.new-game {
  top: 3rem;
}
.roll-dice-btn {
  bottom: 9rem;
}
.hold-btn {
  bottom: 5rem;
}
/* 
=========================================
DICE IMAGE
=========================================
 */
.dice-img-container {
  width: 100px;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
}
.dice-img-container .dice-img {
  width: 100px;
}
.hidden {
  display: none;
}
/* 
=========================================

=========================================
 */
.player-winner {
  background-color: #2f2f2f;
  color: #c7365f !important;
}
/* 
=========================================

=========================================
 */

/* 
=========================================

=========================================
 */

/* 
=========================================

=========================================
 */

/* 
=========================================

=========================================
 */

/* 
=========================================

=========================================
 */

/* 
=========================================

=========================================
 */

/* 
=========================================

=========================================
 */ ;
