* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

body {
    background: #EAE9E6;
    margin:0px 30px;
    font-family: "Instrument Serif", serif;
    font-size: 100px;
    color: #000000;
    transition: 1.5s;
}

a {
    margin:0px 30px;
    font-family: "Helvetica", sans-serif;
    font-size: 12px;
    color: #8b8b8b21;
    transition: 2s;
    text-decoration: none;
    text-align: center;
}

.back {
    margin:0px 15px;
    font-family: "Helvetica";
    font-size: 14px;
    color: #00000093;
    text-decoration: none;
}

.dark {
    background: #000000;
    color: #EAE9E6;
    transition: 2s;
}

.pink {
    color: #e36799;
}

.blue {
    color: #558dd7;
}

.light {
    color: #EAE9E6;
    background: #ffffff;
}


.sans {
    font-family: 'Arial Narrow', Arial, sans-serif;
    font-weight: bold;
    font-size: 87px;
    transition:linear 1s;
}

.display {
    font-family:fantasy;
    font-size: 75px;
    transition:linear .5s;
}

.rainbow {
    color: #e36799;
    animation: rainbow 5s infinite linear;
}

@keyframes rainbow {
    0% {
        filter:hue-rotate(0deg);
    }
    100% {
        filter:hue-rotate(360deg);
    }
}

.whole-page {
    display:flex;
    flex-direction: column;
    gap:20px;
    align-content: space-between;
}

.sentence {
    /* background: lightblue; */
    width:100%;
    height:fit-content;
    display:flex;
    flex-wrap: wrap;
    position: relative;
}

.words {
    /* background: lightpink; */
    width:fit-content;
    height:125px;
    margin: 0px 0px;
    padding:10px;
}

.fill {
    color: rgba(0, 0, 0, 0);
    border-bottom: 3px solid #000000;
    transition: 2s;
}

.underline-2 {
    border-bottom: 3px #EAE9E6 solid;
}

.underline-3 {
    border-bottom: 3px #e36799 solid;
}

.underline-4 {
    border-bottom: 3px #558dd7 solid;
}

.drags {
    /* background: rgb(138, 174, 186); */
    width:100%;
    height: 30vh;
    display:flex;
    flex-wrap:wrap;
    justify-content: space-evenly;
    align-items: end;
    gap:10px;
}

.drags .words {
    height: 90px;
}

@media screen and (max-width:900px) {
    body {
        font-size: 90px;
    }

    .words {
        height:110px;
    }


}

@media screen and (max-width:600px) {
    body {
        font-size: 60px;
    }

    .words {
        height:70px;
    }

    .sans {
        font-size: 50px;
    }

    .display {
        font-size: 45px;
    }
}

video {
    display: none;
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
  }

.show {
    display: block;
}