body {
    background-image: url("../IMG/Water.png");
    width: 100vw;
    margin: 0px;
}

#Land {
    background-image: url("../IMG/Land.png");
    min-width: 65vw;
    height: 100%;
}

#Shore {
    background-image: url("../IMG/Shore.png");
    width: 96px;
}

#ShoreFlip {
    background-image: url("../IMG/Shore.png");
    transform: scaleX(-1);
    width: 96px;
}

#LandHold {
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
}

.Centerer {
    display: flex;
    align-items: center;
}

.screenshots{
    max-height: 300px;
}

p {
    font-family: "Lucida Console", "Courier New", monospace;
    font-size: 20px;
    text-shadow: -1px 1px 0 #000, 1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
    color: white;
    margin: 10px;
}

h1 {
    font-family: "Lucida Console", "Courier New", monospace;
    font-size: 40px;
    text-shadow: -1px 1px 0 #000, 1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
    color: white;
    margin: 10px;
}

h2 {
    font-family: "Lucida Console", "Courier New", monospace;
    font-size: 30px;
    text-shadow: -1px 1px 0 #000, 1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
    color: white;
    margin: 10px;
}

a{
    color:yellow;
}

.wrapper img {
    position: absolute;
    transition: opacity 1s ease-in-out;
    border: dotted;
}

    .wrapper img:not(:first-child) {
        opacity: 0;
    }

.fancyLog {
    border: dotted;
    max-width: 600px;
    margin-top: 10px;
    background-color: rgb(139, 204, 106)
}

@media only screen and (max-width: 500px) {
    body {
        background-image: url("../IMG/Land.png");
        width: 100vw;
        margin: 0px;
    }

    #Shore {
        display: none;
        width: 0;
    }

    #ShoreFlip {
        display: none;
        width: 0;
    }

    #LandHold {
    }

    .screenshots {
        max-width: 100vw;
    }
}