@font-face {
    font-family: "Raleway";
}

body {
    /*background: aliceblue;*/
    margin: 0;
    padding: 0;
}

header {
    background: white;
    margin: 0;
    padding: 30px 50px;
    height: 160px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 5px #0004;
}

.kek-text {
    font-family: "Raleway", sans-serif;
    width: 40%;
    margin: auto;
    padding: 10px 40px;
    display: inline-block;
    /*background: aliceblue;*/
}

.kek-text h1 {
    margin: 0;
    animation: colorFade 4s infinite linear;
    font-weight: normal;
}

.kek-text h1::first-letter {
    /*font-size: 46px;*/
    font-weight: bold;
    color: black;
    margin-right: 2px;
}


#content {
    width: 78%;
    margin: auto;
    padding-left: 4%;
    padding-right: 4%;
}

#logo-image {
    display: inline-block;
    width: 100px;
    border-radius: 100%;
}

.zoomble-big-on-hover {
    rotate: 0deg;
    scale: 100%;
    transition: rotate 2.3s ease-out, scale 2s ease-in-out;
}

.zoomble-big-on-hover:hover {
    rotate: 7200deg;
    scale: 400%;
    transition: rotate 2.5s ease-out, scale 2s ease-in-out;
}


@keyframes colorFade {
    0% {
        color: red
    }
    30% {
        color: green
    }
    60% {
        color: blue
    }
    100% {
        color: red
    }
}

.colorFadeBackground{
    animation: backgroundColorRotation 16s infinite linear;
}

@keyframes backgroundColorRotation {
    0% {
        background-color: hsl(0, 100%, 74%);
    }
    50% {
        background-color: hsl(180, 100%, 74%);

    }
    100% {
        background-color: hsl(0, 100%, 74%);
    }
}


.rotate {
    animation: rotation 2s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

/* rainbow http://www.java2s.com/example/html-css/css-property/change-background-color-continuously.html */
.wubwub {
    /*-webkit-filter: hue-rotate(140deg) saturate(20) grayscale(0%);*/
    filter: hue-rotate(140deg) saturate(20) grayscale(0%);
    animation: wubwub 4s infinite linear;
}

@keyframes wubwub {
    from {
        filter: hue-rotate(0deg) saturate(20) grayscale(0%);
    }
    to {
        filter: hue-rotate(359deg) saturate(20) grayscale(0%);
    }
}


footer {
    height: 40px;
}