* {
    box-sizing: border-box;
    user-select: none;
    font-family: "Playpen Sans", Tahoma, sans-serif;
}
:root {
    --vsmall-text: clamp(0.5rem, 2vh, 1rem);
    --small-text: clamp(0.5rem, 2.5vh, 2.5rem);
    --popup-text: clamp(0.5rem,2vh,2rem);
    --button-text: clamp(1rem,2.5vh,2rem);
    --title-text: clamp(1rem, 2.5vh, 2.5rem);
}
body {
    background: lightblue;
}
.header {
    height: 10vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 5vw;
    padding-right: 5vw;
}
.header-title {
    width: 75%;
    height: 100%;
    font-size: var(--title-text);
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.page-title {
    /* width: fit-content; */
    height: 80%;
    width: 25%;
    min-width: 120px;
    display: flex;
    align-items: center;
}
.page-title img {
    width: auto;
    height: 80%;
    border-radius: 8px;
    padding: 2px;
    box-shadow: 1px 1px 2px 1px grey;
    margin-right: 5px;
}
.header-button {
    height: 8vh;
    width: 20vw;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 1px 1px 5px 1px darkblue;
    cursor: pointer;
}
.pre-game-popup {
    padding: 20px;
    position: fixed;
    font-size: var(--popup-text);
    width: 75vw;
    height: 75vh;
    left: 50%;
    transform: translateX(-50%);
    top: 10%;
    border: 2px solid black;
    background-color: teal;
    border-radius: 10px;
    box-shadow: 1px 1px 5px 1px black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pre-game-text {
    height: 55vh;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.pre-game-text::-webkit-scrollbar {
    display: none;
}
.game-button-container {
    margin: 0 auto;
    width: 100%;
    height: 20vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.wordle-es-button-container {
    width: 100%;
    display:flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 10px;
}
.wordle-es-button-text {
    width: 100%;
    height: 30%;
    max-height: 30px;
    text-align: center;
}
.wordle-es-inner-button-container {
    display:flex;
    flex-direction: row;
    flex: wrap;
    height: 100%;
    max-height: 65px;
    width: 100%;
}

.game-button-container button {
    height: 100%;
    width: 20vw;
    font-size: var(--button-text);
    background-color: transparent;
    color: white;
    transition: all 0.1s ease-out;
    border-radius: 10px;
    box-shadow: 1px 1px 3px 2px black;
}
@media (max-width: 400px) {
    .game-button-container button {
        font-size: var(--vsmall-text);
    }
}
.youtube-button {
    display: flex;
    justify-content: center;
    align-items: center;
}
.youtube-logo {
    width: 15vw;
    height: 80%;
    background-color: lightgoldenrodyellow;
    border-radius: 5px;
}

.wordle-es-inner-button-container button {
    height: 100%;
    max-height: 100px;
    width: 25%;
    max-width: 80px;
}
.game-button-container button:hover {
    background-color: yellow;
    color: black;
}
.button-container {
    margin: 0 auto;
    width: 100%;
    padding-left: 2vw;
    padding-right: 2vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 10px;
    
}
.large-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 21vw;
    min-width: 165px;
    height: 200px;
    font-size: var(--button-text);
    background-color: palegoldenrod;
    border-radius: 10px;
    border: 2px solid black;
    box-shadow: 1px 1px 3px 1px black;
    cursor: pointer;
    /* transition: all 0.1s linear; */
}
.letstry-button {
    background-color: palevioletred;
    color: white;
}
.large-button div {
    width: 100%;
    text-align: center;
}
.large-button:hover {
    background-color: yellow;
}
.other-windows {
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    height: 80vh;
    width: 50vw;
    border: 1px solid silver;
    border-radius: 10px;
    box-shadow: 1px 1px 3px 1px black;
    background-color: lightblue;
    overflow: hidden;
}
.other-windows-header {
    margin: 0 auto;
    width: 90%;
    height: 15vh;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 5vh;
    margin-bottom: 5vh;
}
.other-windows-title {
    padding: 1vh;
    width: 45%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--popup-text);
    border-radius: 10px;
    box-shadow: 0px 0px 5px 1px black;
}
.other-windows-title-support {
    padding: 1vh;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--title-text);
    border-radius: 10px;
    box-shadow: 0px 0px 5px 1px black;
    cursor: pointer;
}
#go-youtube, #go-twitter {
    cursor: pointer;
}
.other-windows-logo {
    max-width: 25%;
}
.about-text {
    font-size: var(--small-text);
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-left: 2vw;
    padding-right: 2vw;
}
.about-text::-webkit-scrollbar {
    display: none;
}
button {
    cursor: pointer;
}
.reduced {
    height: 0px;
    padding: 0;
    border: none;
    box-shadow: none;
    z-index: -20;
    display: none;
}