* {
    margin: 0 auto;
    padding: 0 auto;
    box-sizing: border-box;
    font-family: "cOdiNG";
}

a:hover {
    font-variation-settings: "SQSH" 500, "SHAP" 0;
    transition: font-variation-settings 3s;
    text-decoration: none;
}

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

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

.squish {
    font-family: "cOdiNG";
    font-variation-settings: "SQSH 0" "SHAP 0" 0;
    font-size: 20vw;
    align-self: center;
    animation-name: squish-animation;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes squish-animation {
    0% {
        font-variation-settings: "SQSH" 0, "SHAP" 0;
    }
    50% {
        font-variation-settings: "SQSH" 500, "SHAP" 0;
    }
    100% {
        font-variation-settings: "SQSH" 0, "SHAP" 0;
    }
}

.shape {
    font-family: "cOdiNG";
    font-variation-settings: "SQSH 0" "SHAP 0" 0;
    font-size: 200px;
    animation-name: shape-animation;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes shape-animation {
    0% {
        font-variation-settings: "SQSH" 0, "SHAP" 500;
    }
    50% {
        font-variation-settings: "SQSH" 500, "SHAP" 500;
    }
    100% {
        font-variation-settings: "SQSH" 0, "SHAP" 500;
    }
}

body {
    background-color: rgb(0, 0, 0);
    transition: background-color 1s;
    height: 100vh;
    width: 100vw;
    margin: 0 auto;
}

@media only screen and (max-height: 700px) {
    body {
        background-color: rgb(0, 0, 0);
        background-image: url('https://i.pinimg.com/originals/bd/df/cb/bddfcb5d2692e7865070a53fbf76aa3b.gif');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        transition: background-image 1s;
    }
    h1 {
        font-size: 50px;
        color: rgb(255, 255, 255);
    }
    * {
        color: rgb(255, 255, 255);
        text-shadow: 0 0 10px #fff;
    }
    .squish {
        color: rgb(0, 0, 0);
        font-size: 30px;
        text-align: right;
        text-shadow: 7px 80px 2px rgb(0, 0, 0)

    }
}


@media only screen and (min-height: 700px) {
    body {
        background-color: rgb(0, 0, 0);
    }
    h1 {
        font-size: 150px;
        color: rgb(0, 0, 0);
    }
    * {
        color: rgb(0, 0, 0);
    }
    .squish {
        color: white;
        font-size: 30px;
        text-align: right;
        text-shadow: 7px 80px 2px rgb(31, 199, 39);;
    }
}

/* Written by GPT */
body {
    height: 100%;
    margin: 0;
}

.grid {
    display: grid;
    grid-auto-rows: 1fr;
    gap: 20px;
    padding: 20px;
    width: 100vw;
    overflow: hidden;
    height: 100vh;
    /* height: 60px; */
}

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