body,
html {
    margin: 0px;
    width: 100%;
    height: 100%;
    
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

    font-family: "Poppins", sans-serif;
    background-color: #121212;
    color: white;
}

.fakeBody {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

p {
    margin: 0px;
}

progress {
  width: 100%;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.15); 
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

progress::-webkit-progress-bar {
  background-color: rgba(255, 255, 255, 0.15);
}

progress::-webkit-progress-value {
  background-color: #FE2C55;
  border-radius: 10px;
}

/* Firefox */
progress::-moz-progress-bar {
  background-color: #FE2C55;
  border-radius: 10px;
}

.newFollow {
    position: absolute;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.8);

    font-size: 1.6em;
    font-weight: 600;
}

.newFollow .container {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 70%;
    padding: 40px;
    background: linear-gradient(135deg, #FE2C55, #9333ea, #25F4EE);
    border-radius: 30px;
}

.newFollow img {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.topGifter {
    width: 100%;
    background: linear-gradient(90deg, #FE2C55, #25F4EE);
    padding: 10px;
    border-radius: 10px;
}

.topGifter img {
    width: 50px;
    height: 50px;
    border-radius: 25px;
}

.topGifter .row {
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.giftGoal {
    width: 100%;
    background: linear-gradient(90deg, #FE2C5580, #25F4EE80);
    padding: 10px;
    border-radius: 10px;

    gap: 10px;
}

.giftGoal .row {
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.giftGoal p {
    font-weight: 600;
    font-size: 1em;
}

.giftGoal i {
    color: #FE2C55;
    font-size: 1.75em;
}

.sentWords {
    width: 100%;
    min-height: 390px;
    /* background-color: gray; */
    justify-content: start;
    align-items: center;
}

.guess {
    width: 100%;
    
    justify-content: space-between;
    align-items: center;
    background-color: #F1F1F222;
    margin: 5px;
    padding: 10px;
    border-radius: 10px;

    gap: 10px;
}

.guess .row {
    gap: 10px;
}

.guess img {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    margin: auto;
}

.letter_count {
    background-color: #FE2C55;
    width: fit-content;
    height: fit-content;
    padding: 10px;
    font-weight: bold;
    border-radius: 10px;
    font-size: 0.9em;
}

h1 {
    width: fit-content;
    background-color: #FE2C55;
    padding: 14px;
    font-size: 1.6em;
    border-radius: 1.3em;
    margin: 0px;
}

.letters {
    gap: 10px;
}

.letters p {
    display: flex;
    flex: 1 1 0;

    text-align: center;
    align-items: center;
    justify-content: center;

    background-color: #F1F1F233;
    border-color: #25F4EE;
    border-width: 4px;
    border-radius: 10%;
    border-style: solid;

    aspect-ratio: 1/1;
    width: calc(60vw / var(--letter-count));
    font-size: calc(40vw / var(--letter-count));
    max-width: 90vw;

    font-weight: bold;
}

.row {
    display: flex;
    flex-direction: row;
}

.col {
    display: flex;
    flex-direction: column;
}