* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "Comic Sans MS";
    src: url("COMICSANSMS.ttf") format("truetype");
}

@font-face {
    font-family: "Jokerman";
    src: url("Jokerman.otf") format("opentype");
}

@font-face {
    font-family: "Ecofont";
    src: url("ecofont.ttf") format("truetype");
}


body {
    font-family: "Comic Sans MS";
   /* width: calc(100vw - 40px);*/
    overflow-x: hidden;
}

.header {
    width: calc(100vw - 40px);
    overflow: hidden;
    display: flex;
    height: 78px;
    background-color: magenta;
    justify-content: space-between;
    align-items:center;
    padding: 0px 20px;

}

.header a {
 text-decoration: none;
}

h1 {
    font-size: 3em;
    color: greenyellow;
    text-decoration: none;
    font-family: "Comic Sans MS";
  /*  animation: fonts forwards infinite 1s; */
}

h1:hover {
    animation: none 0s;
}

@keyframes fonts {
    0% {
        font-family: Jokerman;
    }

    66% {
        font-family: "Comic Sans MS";
    }
    33%{
        font-family: Ecofont;
    }
}

.top {
    width: 100vw;
    position: relative;
}

a:hover {
    color: red;
    text-decoration: underline;
}

.header div:nth-child(2) {
    position: relative;
    /*right: 60px;
    overflow: hidden;*/
    width: 80px;
    height: 78px;
}

.logo {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
    width: 140px;
    height: 140px;
    overflow: hidden;
}

.logo img {
    width: 70px;
    height: 70px;
    transform: rotate(-30deg);
    animation: wdlogo forwards 1s infinite;
    position: absolute;
    right: 25px;
    top: 25px;
}

@keyframes wdlogo {
    0% {
        transform: rotate(-30deg) scale(1);
    }
    50% {
        transform: rotate(30deg) scale(2);
    }
    100% {
        transform: rotate(-30deg) scale(1);
    }
}

body{
    background-color: #b666d2;
}

h2 {
    font-family: "Comic Sans MS";
    color: aqua;
    font-size: 2em;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content {
    padding-top: 20px;
    width: 800px;
}

@media screen and (max-width: 768px) {
    .content  { width: 600px; }
}

@media screen and (max-width: 640px) {
    .content  { width: calc(100vw - 20px); }
}


h3{
    font-size: 1.5em;
    color: lime;
}

.content>ul {
    padding-left: 20px;
}

.content>ul>li{
    font-size: 1.3em;
    color: red;
    text-shadow: 0 0 2px #fff;
}

.content>ul>li::marker {
    color: aqua;
}

strong {
    text-shadow: 0 0 2px #fff;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px dashed red;

}

input[type=file] {
    color: gold;
    padding: 8px 12px;
    background-color: coral;
    border: 1px dashed gold;
}

input[type=submit] {
    color: red;
    margin-left: 20px;
    padding: 11px 24px;
    background-color: turquoise;
    border: 1px dashed red;
    cursor: pointer;
}

.wd40-copy {
    margin-left: 20px;
    padding: 4px 6px;
    background-color: lightsalmon;
    text-shadow: 0 0 2px #fff;
    border: 1px solid #000;
    cursor: pointer;
}

.d {
    color: lime;
    text-shadow: 0 0 2px #fff;
    font-size: 1.5em;
}

h4 {
    color: navy;
}

code {
    color: yellow;
    padding: 10px 20px;
    background-color: gray;
    font-family: "Comic Sans MS";
}

.elmordjene {
    position: absolute;
    z-index: -1;
    top: 20%;
    right: 2%;
    transform: rotate(10deg);
}

.elmordjene img {
    width: 400px;
    height: 400px;
}
@media screen and (max-width: 1060px) {
    .elmordjene { display: none; }
}

.inox {
    position: absolute;
    z-index: -1;
    top: 15%;
    left: 2%;
    transform: rotate(-10deg);
}

.inox img {
    height: 500px;
}

@media screen and (max-width: 1360px) {
    .inox { display: none; }
}