@font-face {
    font-family: "Cheese";
    src: url(../fonts/GRILCB.TTF);
}

@font-face {
    font-family: "Candy";
    src: url(../fonts/CANDRB.TTF);
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: solid; */
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
}

header{
    margin-top: 10px;
    margin-bottom: 5px;
}

h1{
    font-family: Cheese;
    font-size: 2.5rem;
    font-size: clamp(1.5rem, 8vw, 3.0rem);
    font-weight: 100;
    margin: 2px;
    /* min-width: 360px; */
    text-align: center;
    text-decoration: underline;
}

/* #region Not using currently */
#wordle-button, #max-input, #count-label{
    display: none;
    font-size: 48px;
    
    text-decoration: underline;
    padding: 5px;
}

#wordle-button:hover{
    background-color: green;
    color: white;
}

#max-input{
    width: 100px;
}

/* #endregion */

main{
    /* background-color: aqua; */
    /* display: flex; */
    /* gap: 20rem; */
    padding: 5px;
}

#board{
    /* background-color: lightsalmon; */
    width: fit-content;
    /* height: fit-content; */
    padding: 0.5em;
    border-radius: 10px;

    /* Flow of the Cards */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* align-content: start;   removes vertical gap between rows */
    flex-wrap: wrap;
    gap: 0.35em;
}

.card-rows{
    width: fit-content;
    display: flex;
    justify-content: center;
    gap: 0.35em;
}

.cards{
    width: 4.5rem;
    height: 4.5rem;
    
    width: clamp(3.5rem, 10vw, 5.5rem);
    height: clamp(3.5rem, 10vw, 5.5rem);

    font-size: clamp(32px, 78vw, 80px);
    font-size: clamp(3.5rem, 4.1vw, 5rem);
    font-size: 5rem;

    background-color: wheat;
    border-radius: 25%;
    border: none;
    /* margin: 0.05em; */

    /* Text Content */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Not Currently Using */
#used-panel, #remains-panel{
    font-size: 2rem;
    font-weight: 900;
    text-decoration: underline;

    /* width: 125px; */
    
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 20px;
    
    display: none;
}

/* Tablets */
@media screen and (600px <= width <= 900px) {
    
    .cards{
        /* color: blueviolet; */
        /* font-size: 80px; */
        font-size: clamp(3rem, 7vw, 5.5rem);
    }
}

/* Phones */
@media screen and (width <= 600px) {
    
    .cards{
        /* color: orange; */
        /* font-size: clamp(3rem, 7vw, 5.5rem); */
        font-size: 2.5rem;
    }
}