/* As elm-css doesn't have support for CSS Grid, these styles still 
   have to be written in CSS.
*/

body {
    background: linear-gradient(to bottom, #121640, #0d0f33, #0a0b26, #07081a, #03040d, #121640, #1a1c53, #232566, #2c2f79, #35388c, #07081a, #121640);
}

.dot {
    animation: fade 2s infinite, textColorChange 1s infinite; /* Apply the animation */
    box-shadow: #348aa7;
    margin: 0 auto;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
    font-family: monospace;
}

img {
    width: 300px;
}

.content {
    max-width: 1000px;
    margin: 0 auto;
    overflow-y: hidden;
}

@keyframes skew {
    0%, 100% {
        transform: skewX(0deg);
    }
    50% {
        transform: skewX(80deg);
    }
}

@keyframes rotateAnimation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


@keyframes fade {
    0% {
        opacity: .8; /* Initial state */
    }
    50% {
        opacity: 1; /* Increase size */
    }
    100% {
        opacity: .8; /* Return to initial size */
    }
}

@keyframes pulsate {
    0% {
        transform: scale(1); /* Initial state */
    }
    50% {
        transform: scale(.4); /* Increase size */
    }
    100% {
        transform: scale(1); /* Return to initial size */
    }
}

@keyframes colorChange {
    0%, 100% {
        background-color: #121640;
    }
    33% {
        background-color: #03040d;
    }
    67% {
        background-color: #35388c;
    }
}



@keyframes matrixChange {
    0%, 100% {
        background-color: #0D0208;
    }
    25% {
        background-color: #00FF41;
    }
    50% {
        background-color: #008F11;
    }
    75% {
        background-color: #003B00;
    }
}

@keyframes textColorChange {
    0%, 100% {
        color: #0D0208;
    }
    25% {
        color: #00FF41;
    }
    50% {
        color: #008F11;
    }
    75% {
        color: #003B00;
    }
}

body {
    height: 100vh;
    display: grid;
    grid-gap: 20px 0;
    gap: 20px 0;
    grid-template-columns: minmax(1fr, 100vw);
    grid-template-rows: 0 0 0 auto 0 0;
    grid-template-areas:
        "header-logo"
        "navigation"
        "sidebar"
        "content"
        "sidebar2"
        "footer"
}

p {
    color: lightgreen;
    margin-bottom: 50px;
    font-family: 'Courier New', monospace;
}

.sidebar {
    grid-area: sidebar;
}

.sidebar2 {
    grid-area: sidebar2;
}

.content {
    grid-area: content;
}

.header-logo {
    grid-area: header-logo;
}

.navigation {
    grid-area: navigation;
}

.footer {
    grid-area: footer;
}
