* {
    font-family: 'Orelega One', cursive;
    text-align: center;
}

body {
    padding: 0;
    margin: 0;
    margin-top: 10%;
    background: linear-gradient(to right, #00AAFF, #ffe600);
}


.mainTitle{
    margin: 20px auto;
    width: 800px;
    color:rgb(224, 226, 188);
    background-color: rgb(44, 230, 44);
    border-radius: 20px;
}

.greenButton{
    position: relative;
    margin: 10px;
    background-color: rgb(44, 230, 44);
    color: rgba(255, 255, 255, 0.767);
    border-color: rgb(12, 163, 105);
    border-radius: 4px;
    font-size: 2rem;
    text-align: center;
    width: 200px
}

.mainTitle{
    font-size: 4rem;
}

.wordInput{
    background-color: rgb(176, 221, 176);
    color: rgba(255, 255, 255, 0.767);
    border-color: rgb(12, 163, 105);
    width: 80%;
    border-radius: 4px;
    font-size: 2rem;
    text-align: center;
}

.wordDisplay{
    color:rgba(255, 255, 255, 0.767);
    background-color: rgb(176, 221, 176);
    padding: 10px;
    border-radius: 10px;
    font-size: 2rem;
    margin: 20px auto;
    width: max-content;
}

.letterInput{
    background-color: rgb(176, 221, 176);
    color: rgba(255, 255, 255, 0.767);
    border-color: rgb(12, 163, 105);
    margin: 20px auto;
    width: 50px;
    border-radius: 4px;
    font-size: 2rem;
    text-align: center;
}

.buttonHolder{
    position: relative;
    width: 80%;
    margin: 10px auto;
    display: flex;
    justify-content: center;
}

.popUp{
    position: absolute;
    width: 500px;
    top: 30%;
    right: auto;
    left: auto;
    background-color: wheat;
    padding: 20px;
    border-radius: 5px;
}

.popupContainer{
    position: absolute;
    top: 0%;
    bottom: 0%;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.425);
    z-index: 1;
    display: flex;
    justify-content: center;
}

.hangman-img{
    image-rendering: crisp-edges;
}

.alreadUsed{
    font-size: 2rem;
    
}

.congrats{
    font-size: 2rem;
}

.language-selector{
    position: relative;
    margin: 10px;
    background-color: rgb(230, 211, 44);
    color: rgba(255, 255, 255, 0.767);
    border-color: rgb(12, 163, 105);
    border-radius: 4px;
    font-size: 2rem;
    text-align: center;
    width: 200px
}