@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');
html, body {margin: 0; height: 100%; width: 100%; overflow: hidden}

body {
    font-family: 'Montserrat', bold;
    font-style: bold;
}

.left {
    width: 30%;
    height: 100%;
    float: left;
    background-color: #5d635f;
    text-align: center;
    vertical-align: middle;
    color: white;
}

.right {
    position: relative;
    width: 30%;
    height: 100%;
    float: right;
    background-color: #5d635f;
    text-align: center;
    vertical-align: middle;
    color: white;
}

.middle {
    float: left;
    position: relative;
    display: flex;
    justify-content: center;
    background-color: rgb(59, 59, 59);
    width: 40%;
    height: 100%;
}

.titleBox {
    position: absolute;
    font-size: 100px;
    text-align: center;
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    grid-gap: 1vw;
    top: 10px;
    z-index: 1;
}

.titleLetter {
    font-size: 30px;
    background-color:#5d635f;
    color: white;
    transition: 0.2s;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 2px rgb(59, 59, 59);
    padding: 3px;
    animation: none;
    animation-duration: 0.5s;
    animation-timing-function: ease;
}

.titleLetter:hover {
    border-width: 5px;
    padding:0px;
}

.grid-container {
    position: absolute;
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    grid-gap: 0.1vw;
  }

.grid-item {
    font-size: 30px;
    background-color:#d6d6d6;
    color:white;
    border: solid 2px rgb(59, 59, 59);
    transition: 0.1s;
    width: 8vh;
    height: 8vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    animation: none;
    animation-duration: 0.5s;
    animation-timing-function: ease;
}

.grid-item:hover {
    border-width: 5px;
    padding:0px;
}

.wordInput {
    display: flex;
    position: absolute;
    bottom: 10px;
    height: 50px;
    align-items: center;
    justify-content: center;
}


.reset {
    background-color: blue;
    width: 100px;
    height: 50px;
    float: right;
}

.letterInput {
    position: absolute;
    width: 150px;
    height: 50px;
    border: none;
    background-color:#d6d6d6;
    font-size: 30px;
    text-align: center;
    text-transform:uppercase;
}

.letterInput:focus {
    background-color: rgb(59, 59, 59);
    color: white;
    border: none;
}

@keyframes example {
    to {transform: rotateY(360deg);}
}

@keyframes none {

}
