* {
    margin: 0 auto;
    padding: 0 auto;
    box-sizing: border-box;
    font-family: "cOdiNG";
    color: white;
    text-shadow: 0 0 10px #fff;
}

body {
    background-color: black;
    background-image: url('02 (2).gif');
    background-position: center;
    background-repeat: no-repeat;
}

@font-face {
    font-family: "cOdiNG";
    src: url("cOdiNGVF.ttf");
}

.compress {
    font-family: "cOdiNG";
    font-variation-settings: "SQSH" 0, "SHAP" 0;
    font-size: 200px;
    transition: font-variation-settings .5s;
    text-align: center;
}

@media only screen and (max-height: 900px) {
    body {
        .compress {
            font-variation-settings: "SQSH" 0;
        }
    }
}
@media only screen and (max-height: 800px) {
    body {
        .compress {
            font-variation-settings: "SQSH" 100;
        }
    }
}
@media only screen and (max-height: 700px) {
    body {
        .compress {
            font-variation-settings: "SQSH" 200;
        }
    }
}
@media only screen and (max-height: 600px) {
    body {
        .compress {
            font-variation-settings: "SQSH" 300;
        }
    }
}
@media only screen and (max-height: 500px) {
    body {
        .compress {
            font-variation-settings: "SQSH" 400;
        }
    }
}
@media only screen and (max-height: 400px) {
    body {
        .compress {
            font-variation-settings: "SQSH" 500;
        }
    }
}

@media only screen and (max-width: 1440px) {
    body {
        .compress {
            font-variation-settings: "SHAP" 0,"SQSH" 0;
        }
    }
}
@media only screen and (max-width: 1240px) {
    body {
        .compress {
            font-variation-settings: "SHAP" 100,"SQSH" 100;;
        }
    }
}
@media only screen and (max-width: 1140px) {
    body {
        .compress {
            font-variation-settings: "SHAP" 200,"SQSH" 200;;
        }
    }
}
@media only screen and (max-width: 1040px) {
    body {
        .compress {
            font-variation-settings: "SHAP" 300,"SQSH" 300;;
        }
    }
}
@media only screen and (max-width: 940px) {
    body {
        .compress {
            font-variation-settings: "SHAP" 400,"SQSH" 400;;
        }
    }
}
@media only screen and (max-width: 840px) {
    body {
        .compress {
            font-variation-settings: "SHAP" 500,"SQSH" 500;;
        }
    }
}
@media only screen and (max-width: 840px) and (max-height: 480px) {
    body {
        background-color: rgb(255, 255, 255);
        background-image: none;
        transition: 1s;
    }
}

.grid {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 10px;
    padding: 10px;
    max-width: 100vw;
    max-height: 100vh;
}
.grid-child {
    padding: 10px;
}

.flex-parent {
    display: flex;
    flex-direction: row;
    gap: 1px;
    padding: 1px;
    width: 100vw;
    height: 30vh;
}
.flex-child {
    padding: 10px;
    flex-grow: 1;
    background-color: transparent;
}

.progress {
    display: flex;
    flex-direction: row;
    padding: 10px;
    width: 100vw;
}
.progree div {
    flex-grow: 1;
}
