* {
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: RobloxClassicfont;
    src: url(../projects/findthesecrets.ttf);
}

body {
    background-image: url("../images/findthesecrets_background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-color: black;
}

.header {
    top: 0;
    height: 45px;
    position: sticky;
    text-align: center;

    color: rgb(0, 174, 255);
    font-size: xx-large;
    outline-style: solid;

    text-shadow: 0px 0px 10px rgb(0, 170, 255);

    background-color: black;
    background-image: url(../images/tilestransparent.png);
    animation: movingBackground 10s linear infinite;
}

.header h {
    vertical-align: middle;
}

@keyframes movingBackground {
    from { background-position: 0 0;}
    to {background-position: 100px 100px;}
}

.body {
    background-color: black;
    padding-left: .5vw;
    padding-right: .5vw;
    padding-top: .5vw;

    margin: auto;

    width: 35vw;
    min-height: calc(99vh - 89px);
    outline-style: solid;
    color: rgb(0, 174, 255);
    text-align: center;

    background-image: url(../images/tilestransparent.png);
    animation: movingBackground 10s linear infinite;
}

.spacer {
    height: 1vh;
}

.body h {
    text-shadow: 0px 0px 10px rgb(0, 170, 255);
    font-size: x-large;
}

.paragraph {
    background-color: black;
    text-shadow: 0px 0px 10px rgba(0, 170, 255, 0.511);
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 20px;
    width: 90%;
    color: rgb(0, 174, 255);
    padding: 10px;


    outline-style: outset;
}

.body h1 {
    text-shadow: 0px 0px 10px rgb(0, 170, 255);
    font-size: xx-large;
    line-height: 60px;
}

.links {
    text-shadow: 0px 0px 10px rgb(0, 170, 255);
    position: fixed;
    left: calc(32vw - 180px);
    top: 70px;
    width: 150px;
    height: auto;
    background-color: black;
    background-image: url(../images/tilestransparent.png);
    animation: movingBackground 10s linear infinite;
    outline-style: solid;
    color: rgb(0, 174, 255);
    text-align: center;
    padding-bottom: 5px;
}

.links h1 {
    
    font-size: large;
    margin-top: 5px;
    /* between paragraphs */
}

.linkstop {
    margin-bottom: 5px;
    /* between paragraphs */
    border-bottom-style: solid;
    height: 20px;
    font-size: 18px;
    text-align: left;
    text-align: center;
}

a {
    text-decoration: none;
    font-style: italic;
    color: rgb(0, 174, 255);
}
a:hover {
    color: white;
}
.selected {
    color: white;
}

img {
    width: 50%;
}

.footer {
    padding-top: 5px;
    background-image: url(../images/tilestransparent.png);
    animation: movingBackground 10s linear infinite;
    height: 36px;
    background-color: black;
    border-top-style: solid;
    color: rgb(0, 174, 255);
    text-align: center;
    font-size: 14px;

        position: sticky;
    bottom: 0;
}
.footer a {
    margin: 10px;
}

.devlogButton {
    background-color: black;
    text-shadow: 0px 0px 10px rgba(0, 170, 255, 0.511);
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 20px;
    width: 90%;
    color: rgb(0, 174, 255);
    padding: 10px;


    outline-style: outset;
}
.devlogButton:hover {
    color: white;
}

#overlay {
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    position: fixed;
    background-color: rgba(255, 254, 254, 0.329);
    background-image: url(../images/tiles.png);

    display: none;
    justify-content: center;
    align-items: center;
    animation: movingBackground 10s linear infinite;
}
.devlog {
    position: fixed;
    width: 60vmin;

    background-color: black;
    text-shadow: 0px 0px 10px rgba(0, 170, 255, 0.511);
    color: rgb(0, 174, 255);
    padding: 10px;
    padding-top: 3.5vmin;
    border-style:solid;
    line-height: 3vmin;

    font-size: 2vmin;
}
.devlog h1 {
    line-height: 4.25vmin;
}
.devlog img {
    margin-top: 10px;
    max-width: 90%;
}

#overlay_topbar {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 2.1vmin;

    width: 100%;
    height: 2.1vmin;
    border-bottom: solid;
}
#overlay_topbar button {
    background-color: black;
    border-style: none;
    border-left-style: solid;
    border-left-color: rgb(0, 174, 255);
    color: rgb(0, 174, 255);
    width: 2.1vmin;
    height: 2.1vmin;
    position: absolute;
    top: 0;
    right: 0;
}
#overlay_topbar button:hover {
    color: rgb(255, 255, 255);
}

#original {
    display: none;
}