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

body {
    background-image: url('https://i.pinimg.com/originals/6f/7c/a6/6f7ca61aa4876d76eeb3fc1279c5f233.gif');
    background-position: center;
    background-repeat: no-repeat;
    background-color: black;
}
@font-face {
    font-family: "cOdiNG";
    src: url("cOdiNGVF.ttf");
}

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

.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;
}

.shap {
    font-variation-settings: "SQSH" 0, "SHAP" 500;
    transition: font-variation-settings .5s;
}

.squish {
    font-variation-settings: "SQSH" 250, "SHAP" 500;
}

.squish1 {
    font-variation-settings: "SQSH" 500, "SHAP" 500;
}

.first {
    border: 1px dotted  rgb(126, 255, 133);
    text-shadow: 0 0 10px rgb(126, 255, 133);
    color:  rgb(126, 255, 133);
    font-size: 80px;
    font-variation-settings: "SQSH" 250, "SHAP" 500;
    background-color: transparent;
    border-radius: 5px;
}
.first:hover {
    background-color:  rgb(24, 59, 26);
    transition-duration: 1s;
    cursor: zoom-in;
}

.second {
    border: 1px dotted  rgb(126, 255, 133);
    text-shadow: 0 0 10px rgb(126, 255, 133);
    color:  rgb(126, 255, 133);
    background-color: transparent;
    font-size: 20px;
    font-variation-settings: "SQSH" 500, "SHAP" 500;
    border-radius: 5px;
}
.second:hover {
    background-color:  rgb(24, 59, 26);
    transition-duration: 1s;
    cursor: zoom-in;
}

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

a {
    color: rgb(11, 33, 9);
    text-shadow: 0 0 10px rgb(25, 37, 24);
}
a:hover {
    color: rgb(31, 199, 39);
    text-shadow: 0 0 10px rgb(93, 250, 79);
    cursor: zoom-in;
}
.special {
    text-decoration: none;
    color: white;
    text-shadow: 0 0 10px white;
}
.special:hover {
    color: rgb(83, 255, 86);
    text-shadow: 0 0 10px rgb(53, 234, 56);
}