body {
    /*width: 100vw;*/
    background: linear-gradient(100deg, #B91646, #da92a8) no-repeat fixed;
    margin: 0;
    font-family: Poppins;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.introScreen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding-top: 30vh;
}
.input-name {
    background-color: #FBF3E4;
    height: 35px;
    display: flex;
    flex-direction: row;
    align-content: center;
    border-radius: 50px;
}

.buttonPlay {
    
    background: none;
	outline: none;
    border: none;

}

.inputBox {
    width: 200px;
    outline: none;
    border: 0;
    background-color: transparent;
    font-size: 18px;
    text-align: center;
}

.inputBox:focus::placeholder {
    color: transparent;
    transition: 0.420s ease;
}

h1{
    color: #fffdf8;
    font-size: 5em;
    margin-bottom: 20px;
    font-weight: bold;

    overflow: hidden;

}

.pressEnterText {
    color: #fffdf8;
    font-size: 10px;
    visibility: visible;
}

#tutorialScreen {
    padding: 100 20;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tutorial-title {
    color: #fffdf8;
    font-size: 3em;
    margin-bottom: 90px;
}

.tutorial-text {
    display: flex;
    flex-direction: column;
    margin-right: 200px;
    width: 45%;
}

.tutorial-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

h4 {
    color: #fffdf8;
    font-size: 1.5em;
    margin-bottom: 0;
    margin-top: 5px;
}

li {
    color: #FBF3E4;
    font-size: 0.7em;
    padding: 10 0;
}
.bg-black {
    background:linear-gradient(310deg, #000000, #474747);
    border: 2px solid rgb(78, 78, 78);
}

.bg-white {
    background:linear-gradient(130deg, #808080, #f3f3f3);
    border: 2px solid #b3b3b3;
}

.tutorial-tile {
    border-radius: 1px;
    width: 200px;
    height: 200px;
    position: relative;
    margin: 5px;
}

.letter {
    position: absolute;
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5em;
    color: whitesmoke;
}


.lets-play-button {
    width: 300px;
    height: 100px;
    align-self: center;
    margin-top: 50px;
    font-size: 1.5em;
}

.tile {
    background-color: FBF3E4;
    margin: 5px;
    border-radius: 1px;
    width: 170px;
    height: 170px;
    position: relative;
}

.tile-text {
    position: absolute;
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.7em;
    color: whitesmoke;
}

#score {
    color: white;
}

.nav{
    color: #FBF3E4;
    width: 75%;
    display: flex;
    align-items: baseline;
    justify-content: space-evenly;
    padding: 15px 0;
}

.nav div {
    font-size: 1.5em;
}

.lost-screen {
    padding: 17%;
    font-size: 0.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.you-lost {
    text-align: center;
    margin-bottom: 30px;
    font-size: 8em;
    background-color: #000000;
    padding: 2px;
}

.try-again {
    height: 100px;
    width: 250px;
    border-radius: 10%;
}

.final-score {
    color: #f3f3f3;
    font-size: 5em;
}

.speaker-icon{
    position:absolute;
    bottom:0;
    right:0;
    padding-bottom: 15px;
    padding-right: 15px;
    cursor: pointer;
}

.disable-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.board {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-container {
    max-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-justify-content: center;

}

.play-button {
    position: fixed;
    margin: 0;
    background: #FBF3E4;
    outline: none;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    text-align: center;
    font-size: 2em;
    border: 1px rgb(177, 177, 177) solid;
    color: #141414;
    box-shadow: 0 10px 10px rgb(0 0 0 / 0.5);
}

.footer{
    position:absolute;
    color: whitesmoke;
    bottom:0;
    padding-bottom: 15px;
}

a{
    color: whitesmoke;
}