body {
    background: black;
    background-image: url(stars_monochrome.gif);
    background-repeat: repeat;
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
}

#cloudcontainer {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    z-index: 2;
}

#clouds {
    position: relative;
    top: 0;
    height: 100vh;
    -webkit-animation: moveclouds 300s linear infinite;
    -moz-animation: moveclouds 300s linear infinite;
    -o-animation: moveclouds 300s linear infinite;
    opacity: 90%;
}

@-webkit-keyframes moveclouds {
    0% {
        left: 50vw;
    }

    100% {
        left: -5670px;
    }
}

@-moz-keyframes moveclouds {
    0% {
        left: 50vw;
    }

    100% {
        left: -5670px;
    }
}

@-o-keyframes moveclouds {
    0% {
        left: 50vw;
    }

    100% {
        left: -5670px;
    }
}

h1 {
    position: fixed;
    position: -webkit-fixed;
    left: 5vw;
    top: 90vh;
    margin: 0;
    padding: 0;
    color: white;
    text-shadow: 0 0 4px black;
    z-index: 3;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3;
}

.entry img {
    height: 10vh;
}

.entry {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    grid-template-rows: 0.5fr;
    grid-auto-columns: 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
        "star date";
}

#date {
    color: black;
    background-color: white;
    width: fit-content;
    height: fit-content;
    padding: 2px;
}

#entry5 {
    position: absolute;
    top: 200px;
    left: 400px;
}

#entry4 {
    position: absolute;
    top: 370px;
    left: 760px;
}

#entry3 {
    position: absolute;
    top: 200px;
    left: 930px;
}

#entry2 {
    position: absolute;
    top: 250px;
    left: 1048px;
}

#entry1 {
    position: absolute;
    top: 440px;
    left: 1100px;
}

#back {
    position: fixed;
    position: -webkit-fixed;
    top: 0;
    left: 0;
    height: 10%;
    padding: 0;
    margin: 0;
    z-index: 3;
}

#textbox {
    position: fixed;
    position: -webkit-fixed;
    left: 1vw;
    top: 10vh;
    height: 75vh;
    width: 25vw;
    min-width: 250px;
    padding: 5px;
    border: 3px double white;
    border-radius: 10px;
    visibility: hidden;
    align-content: center;
    background: black;
    z-index: 3;
}

#textbox iframe {
    height: 100%;
    width: 100%;
}

#cloudcontainer {
    position: fixed;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
}

.clouds {
    position: absolute;
    top: 100px;
    left:-1500px;
    margin: 0;
    padding: 0;
}