html, body {
    padding: 0;
    font-family: "Love Ya Like A Sister", cursive;
    font-weight: 400;
    background-image: linear-gradient(to right,rgb(38, 83, 208), rgb(208, 35, 35));
    color: white;
}

footer {
   text-align: center;
}

h1 {
    text-align: center;
    margin-top: 100px;
    font-size: 80px;
}
.game-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 100px;
}
.container {
    margin: auto;
    height: 500px;
    width: 500px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    border: 2px solid white;

}

.container > div {
    border: 3px solid white ; 
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100px;

}

.game-info{
    display: grid;
    grid-template-rows: 1fr 3fr 1fr 0fr;
    justify-content: center;
        text-align: justify;
    height: 500px;
    width: 500px;
    font-size: larger;
    margin-top: -100px;
    margin-left: 50px;
}

.game-info h1{
  font-size: 50px;
}

.game-info p {
    line-height: 30px;
    width: 80%;
    justify-self: center;
    font-weight: bold;
}


.game-results{
    display: grid;
    align-items: center;
    text-align: center;
    height: 500px;
    width: 500px;

}



.game-results p {
    font-size: 50px;
}

dialog p {
    font-size: 60px;
}

.restart {
    height: 50px;
    width: 150px;
    border-radius: 15px;
    justify-self: center;
    font-family: "Love Ya Like A Sister", cursive;
    background-color: rgb(255, 255, 255);
    font-weight: bold;
    border: none;
    font-size: 20px;
   
}

.restart:hover {
    background-color: rgb(0, 0, 0);
    color: white;
}

::backdrop {
  background-image: linear-gradient(to right,rgb(38, 83, 208), rgb(208, 35, 35));
}

::after {
    background-color: blue;
}
.input {
    visibility: hidden;
}

#submitBtn {
    height: 45px;
    width: 200px;
    font-size: 24px;
    border: none;
    background-color: #FCF6EC;
    border-radius: 25px;
    font-weight: bold;
    color: black;
    cursor: pointer;
}

#submitBtn:hover {
    background-color: black;
    color: white;
}

.userInput:open {
  border: none;
  height: 400px;
  width: 300px;
  background-color: rgba(255, 255, 255, 0.412);
  border-radius: 10px;
} 

.popup:open{
    border: none;
    background-color: rgb(255, 255, 255);
    color: black;
    border-radius: 30px;
}

fieldset {
    display: grid;
    justify-content: space-around;
    align-items: center;
    height: 320px;
    border: none;
}


fieldset p {
    font-size: 30px;    
    text-align: center;
    font-weight: bold;
}

#submitBtn {
    justify-self: center;
    width: 260px;
    font-family: "Love Ya Like A Sister", cursive;
}

fieldset input {
    height: 50px;
    border-radius: 20px;
    font-size: larger;
    border: none;
    color: white;
    font-weight: bold;
    font-family: "Love Ya Like A Sister", cursive;
}

#player1Name {
    background-color: blue;
    padding-left: 20px;
}

#player2Name {
    background-color: red;
    padding-left: 20px;
}

::placeholder {
    font-weight: bold;
    color: white;
    font-family: "Love Ya Like A Sister", cursive;
}

textarea:focus, input:focus{
    outline: none;
}

.noBtn, .yesBtn {
    background-color: rgb(4, 0, 255);
    color: white;
    height: 45px;
    width: 100px;
    border-radius: 15px;
    font-family: "Love Ya Like A Sister", cursive;
    font-size: 24px;
    border: none;
}

.noBtn:hover, .yesBtn:hover{
    background-color: rgb(0, 0, 0);
    color: white
}

button:focus {outline:0;}

button {
 cursor: pointer;
}