@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Fira Code', monospace;

}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0C1D3F;
    color: #e0e0e0;
}

body::before {
    content: "";
    position: absolute;
    background-image: url("/__static__/blueSquare.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-filter: opacity(20%) sepia(.45) contrast(1.50) brightness(0.75) saturate(1.3) hue-rotate(-5deg) invert(80%);
    filter: opacity(20%) sepia(.45) contrast(1.50) brightness(0.75) saturate(1.3) hue-rotate(-5deg) invert(80%);
}

.container {
    background-color: black;
    color: #FFFFFF;
    padding: 20px;
    width: 800px;
    border: 2px solid #ffa844;
    overflow: auto;
}

.cursor::after {
    content: "_";
    display: inline-block;
    animation: blink 0.3s infinite alternate;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

a {
    color: #ffa844;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3 {
    color: #ffffff;
}

p {
    color: #b0b0b0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.logs {
    font-family: 'Fira Code', monospace;
    white-space: pre-wrap;
    max-width: 95%;
    text-align: left;
    font-size: .8rem;
}
