html {
    background: linear-gradient(45deg, #e6f7ff 10%, transparent 10%, transparent 90%, #e6f7ff 90%), linear-gradient(135deg, transparent 40%, #e6f7ff80 40%, #e6f7ff80 60%, transparent 0), linear-gradient(45deg, transparent 40%, #e6f7ff 40%, #e6f7ff 60%, transparent 0);
    background-size: 2em 2em;
    background-color: #ffffff;
}

html,
body,
iframe {
    cursor: url("hellokittycursor.gif"), crosshair;
}


.parent {
    display: grid;
    grid-template-columns: repeat(5, 10fr);
    grid-template-rows: repeat(5, 10fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.div1 {
    grid-area: 3 / 2 / 5 / 5;
    background-color: antiquewhite;
}

.div2 {
    grid-area: 2 / 3 / 3 / 5;
    background-color: #dd0628;
    text-align: center;
}

.div3 {
    grid-area: 2 / 2 / 3 / 3;
    background-color: #dd0628;
}

.hk {
    width: 200px;
    transform: rotate(-10deg);
    margin-left: 10px;
    cursor: url("hellokittycursor.gif"), crosshair;
}

.hk:hover {
    animation: shake 0.5s;
    animation-iteration-count: infinite;
    transition: .5s ease-in;
    cursor: url("hellokittycursor.gif"), crosshair;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

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

mark {
    border: 1px solid black;
    box-shadow: 0px 0px 2px #000;
    text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;
    color: white;
    /* color font */
    background-color: #F8E0F7;
    border-radius: 100px;
    background: linear-gradient(180deg, rgb(255, 230, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* change this if you want */
    padding-left: 10px;
    padding-right: 10px;
    font-family: 'Rammetto One', cursive;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    cursor: pointer;
}

a {
    font-family: 'Rammetto One', cursive;
    text-decoration: none;
    color: white;
    text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
    transition: .3s;
    letter-spacing: 1cap;
    cursor: url("hellokittycursor.gif"), crosshair;
}

a:hover {
    -webkit-filter: blur(1px);
    filter: blur(1px);
    color: white;
    transition: .3s;
    text-decoration: none;
    text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
    letter-spacing: 2cap;
    cursor: url("hellokittycursor.gif"), crosshair;
}

.title {
    font-family: "hk";
    font-size: 100px;
    margin-bottom: 0;
    margin-top: 30px;
    text-shadow: -1px -1px 0 #F2E9E4, 1px -1px 0 #F2E9E4, -1px 1px 0 #F2E9E4, 1px 1px 0 #F2E9E4;
    -webkit-text-stroke: 1px #dd0628;
    filter: drop-shadow(0px 1px yellow) drop-shadow(0 -1px yellow) drop-shadow(1px 0 #9a8c98) drop-shadow(-1px 0 yellow);
}

iframe {
    border: none;
    width: 99%;
    height: 95%;
    background-color: transparent;
}