/* for charset and fonts */
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Philosopher&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital@0;1&display=swap');
/* end charset and fonts */

/* for reset */
* {
    box-sizing: border-box;
    font-family: 'Lora', serif;
    margin: 0;
    outline: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

a,
a img,
abbr,
acronym,
applet,
fieldset,
form,
iframe,
img,
object,
table {
    border: none;
}

blink {
    text-decoration: none;
}

/* end reset */

/* for root variables */
:root {
    --cnPrimary: #543627;
    --cnSecondary: #FFDDAA;
    --cnWhite: #FFFFFF;
}

/* end root variables */

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.cnHomeBG {
    background-color: var(--cnPrimary);
}

.cnGlow {
    position: relative;
    border-radius: 200px;
}

.cnGlow:before,
.cnGlow:after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 362px;
    height: 362px;
    background: linear-gradient(90deg, #fb0094, #00f, #0f0, #ff0, #f00, #fb0094, #00f, #0f0, #ff0, #f00);
    border-radius: 200px;
    background-size: 400px;
    z-index: -1;
    animation: animate 24s linear infinite;
}

.cnGlow:after {
    filter: blur(12px);
}

@keyframes animate {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 2400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.cnLogo {
    background-image: url(/webFiles/webLogo.svg);
    background-repeat: no-repeat;
    height: 360px;
    width: 360px;
}