
/* *********************************************************** */
/*       *** CUTEWHITEDOG - Homepage Stylesheet ***            */
/*                    (c) CUTEWHITEDOG                         */
/* *********************************************************** */

/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans'); */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,800;1,800&display=swap');

@keyframes bluranim {
    0%   {filter: blur(0px)}
    50%  {filter: blur(10px)}
    100% {filter: blur(0px)}
}

body {
    background-color: black;
    color: white;
}

/***********/
/* LOGO FX */
/***********/

#headImgs {
    position: relative;
    width: 80%;
    max-width: 1000px;
    margin: auto;
    height: 55vh;
}

#headImgs > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

#headImgs > #one {
    z-index: 2;
}


#headImgs > #two {
    z-index: 1;
    animation-name: bluranim;
    animation-duration: 2s;
    animation-iteration-count: infinite;
} 

/***********/

h1#subtitle {
    font-family: "Noto Sans";
    font-weight: bold;
    font-size: 25px;
    text-align: center;
    color: red;
    /* ------------------- */
    transform: rotate(3deg);
    background-color: #161a1d;
    margin-top: 15px;
    overflow-x: hidden;
}

footer {
    font-family: "Noto Sans";
    font-weight: bold;
    text-align: center;
    /* ------------------- */
    position: fixed;
    bottom: 0;
    width: 100%;
    color: white;
}