:root {
    --text-ls: 0.5rem;
}

html {
    cursor: crosshair;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: "Courier New", Courier, monospace;
    letter-spacing: var(--text-ls);
    color: #000000;
    background-color: #5E7EB5;
}

body * {
    cursor: crosshair;
}

::selection {
    background-color: #5E7EB5;
}

@keyframes bg-anim {
    from {
        background-position-x: 480px;
    }
    to {
        background-position-x: 0px;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    border: 0px;
    border-bottom: 1px;
    border-style: dotted;
}

.sky {
    background-color: #8FB8EA;
    height: 50vh;
    width: 100%;
}

.bg-ocean {
    width: 100%;
    height: 216px;
    background-image: url(bg-front.png);
    background-color: #00000000;
    animation: bg-anim 30s linear infinite;
}

.bg-ocean p {
    position: relative;
    top: 64px;
    bottom: auto;
    padding: 0px;
    margin: 0px;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 2px 2px #5E7EB5;
}

.bg-ocean p.title {
    animation: fade-in 1.0s linear;
}

.bg-clouds1 {
    width: 100%;
    height: 216px;
    background-image: url(bg-layer1.png);
    background-color: #00000000;
    animation: bg-anim 50s linear infinite;
}

.bg-clouds2 {
    width: 100%;
    height: 216px;
    background-image: url(bg-layer2.png);
    background-color: #00000000;
    animation: bg-anim 70s linear infinite;
}

.bg-clouds3 {
    width: 100%;
    height: 216px;
    background-image: url(bg-layer3.png);
    background-color: #8FB8EA;
    animation: bg-anim 90s linear infinite;
}

.dycp {
    white-space: nowrap;
    overflow-x: hidden;
    overflow-y: visible;
    height: 40px;
}

.dycp p {
    display:inline;
}

.plasma {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
    border: 1px;
    border-style: dashed;
    border-radius: 32px;
    white-space: nowrap;
    overflow: hidden;
    z-index: 1;
}

p {
    z-index: 2;
}