/* colors */
:root {
    --bg-color: #36393F;
    --fg-color: #eeeeee;
    --red: #e23636;
    --blue: #534EFF;
    --green: #36e24d;
    --dark-black: #1F2124;
    --boxwidth: 60vmin;
    --gridelFontSize:1.8vmin;
}

@media screen and (orientation:portrait) {
:root {
    --boxwidth: 96vw;
    --gridelFontSize:1.5vh;
}
}
@font-face {
    font-family: 'Arial Black Backup';
    src: url('res/arial-black.ttf') format('truetype');
}


body {
    background-color: var(--bg-color);
    color: var(--fg-color);
    font-family: "Arial Black", "Arial Black Backup";

}

.wordGrids{
    display:flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.wordGrid {
    border-radius: 1vmin;
    background: var(--dark-black);
    color:var(--fg-color);
    width:var(--boxwidth);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    justify-items: center;
    justify-content: center;
    align-items: center;
  }

  .wordGridBad {
    grid-template-rows: repeat(2, 1fr);
  }

  .wordGridSq {
    /* background-color: ; */
    text-align: center;
    padding: 3vmin;
    font-size: var(--gridelFontSize);
    /* filter: blur(.25px); */
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    text-shadow: 0px 2px 2px rgb(0, 0, 0);
  }
  .wordGridGoodTitle{
    color:var(--green);
    margin:.2vmin;
  }
  .wordGridBadTitle{
    color:var(--red);
    margin:.2vmin;
  }

  .wordGridTitle{
    background-color: #1E1E1E;
    border-radius: 1vmin;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin:1vmin;
  }

.score{
    position:absolute;
    bottom:0;
    right:0;
    margin:1vmin;
}

.robotIcon{
    width:5vmin;
    padding:2vmin;
}

.robotBox{
    display:flex;
    flex-direction: row;
    background-color: var(--dark-black);
    justify-content: center;
    align-items: center;
    width:var(--boxwidth);
    margin:2vmin;
    border-radius: 1vmin;
    justify-content: flex-start;
    opacity: 1;
    padding: 2vmin;
    font-size: var(--gridelFontSize);
}

.robotText{
    opacity: 1;
}

.invisBtn{
    display:none;
}

.title{
    margin:1vmin;
    color:white;
    font-size: 2vmin;
}
@media screen and (orientation:portrait) {
    .title{
        text-align: center;
    }
}

.rtRed{
    color:var(--red);
    display:inline;
}

.rtGreen{
    color:var(--green);
    display:inline;
}

.rtGrey{
    color:#393939;
    display:inline;
}

.noM{
    margin-top:0vmin;
    margin-bottom:0vmin;
}
.smallM{
    margin-top:1vmin;
    margin-bottom:1vmin;
}

.bottomGoingUp{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column-reverse;
    height: 0;
    width: 100%;
}
.botContainer{
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    height: 100%;
    pointer-events: none;
}

.chatboxTextbox {
    pointer-events: all;
    font-family: "Arial Black", "Arial Black Backup";
    box-sizing: border-box;
    padding:2vmin;
    outline-width: 0;
    border-radius: 1vmin;
    border:none;
    color:var(--fg-color);
    font-size: 2.5vmin;
    background-color: var(--dark-black);
    margin:2vmin;
}

@media screen and (orientation:portrait) {
    .chatboxTextbox {
        height:12vmin;
        font-size: 5vmin;
        width:var(--boxwidth);
    }
}

.hearts{
    display:flex;
}
.heartIcon{
    width:4vmin;
    height:4vmin;
    margin-left:.2vmin;
    margin-right:.2vmin;
}
@media screen and (orientation:portrait) {
    .heartIcon{
        width:6vmin;
        height:6vmin;
        margin-left:.2vmin;
        margin-right:.2vmin;
    }
}

.robotTextAll{
    display:flex;
    flex-direction: column;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    margin: 12px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px; /* Rounded edges */
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

button:hover {
    background-color: #45a049; /* Darker green */
    transform: scale(1.05); /* Slight zoom effect */
}

button:active {
    background-color: #3e8e41; /* Even darker green */
    transform: scale(0.98); /* Click effect */
}

.strikethrough {
    text-decoration: line-through;
}