@font-face {
    font-family: waboxa;
    src: url(Waboxa.ttf) format("truetype");
}

body {
    background-image: url(https://i.pinimg.com/originals/6e/60/28/6e6028da1f46b7999042488826d5fb8e.gif);
  
    background-size: cover;
    background-position: 30%;

}

.container {
    width: 90%;
    height: 80%;
    

    padding: 0%;
    background-blend-mode: difference;
    text-align: center;
    background-image: url(https://i.pinimg.com/originals/fd/b0/9c/fdb09cd5e747f5c8330f998f11efb0a1.gif);
}

h1 {
    font-family: waboxa;
    mix-blend-mode: difference;
    color: rgb(0, 162, 255);
    text-shadow: 0 0 15px #ffffff;
    font-size: 500%;
    
}

.textet {
    width: 40%;
    background-color: #fff5ea;
    font-family: waboxa;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    border-style: dashed;
    border-color: blue;
}

img:hover {
    animation: gelatine 0.5s infinite;
}

@keyframes gelatine {
    from, to { transform: scale(1, 1); }
    25% { transform: scale(0.9, 1.1); }
    50% { transform: scale(1.1, 0.9); }
    75% { transform: scale(0.95, 1.05); }
  }