* {
    --pond-blue: #7ee3fb;
    --dark-blue: #306977;
    --dark-green: #457737;
    --mid-green: #75b054;
    --light-green: #a9e585;
    --pale-yellow: #e6dd48;
    --img-size: 10vw;
    transition: display 2s;
    color: var(--dark-blue);
    margin: 0 auto;
}

html {
    background-color: var(--pond-blue);
    background-repeat: no-repeat;
    margin: 0 auto;
    font-family: "Concert One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    margin: 0 auto;
}

#froggy {
    display: block;
    width: var(--img-size);
    height: var(--img-size);
    position: relative;
    top: 0;
    left: 0;
    margin:0;
    -webkit-animation: moveX 8s linear 0s infinite alternate, moveY 6.8s linear 0s infinite alternate;
    -moz-animation: moveX 8s linear 0s infinite alternate, moveY 6.8s linear 0s infinite alternate;
    -o-animation: moveX 8s linear 0s infinite alternate, moveY 6.8s linear 0s infinite alternate;
    animation: moveX 8s linear 0s infinite alternate, moveY 6.8s linear 0s infinite alternate;
    filter: drop-shadow(0 0.2rem 0.25rem rgba(0, 0, 0, 0.2));
}

.hidden {
    opacity:0;
    z-index: -1;
}

.defrog {
    height: 100vh;
    width:100vw;
}

@-webkit-keyframes moveX {
    from {
        left: 0;
    }

    to {
        left: calc(100vw - var(--img-size));
    }
}

@-moz-keyframes moveX {
    from {
        left: 0;
    }

    to {
        left: calc(100vw - var(--img-size));
    }
}

@-o-keyframes moveX {
    from {
        left: 0;
    }

    to {
        left: calc(100vw - var(--img-size));
    }
}

@keyframes moveX {
    from {
        left: 0;
    }

    to {
        left: calc(100vw - var(--img-size));
    }
}

@-webkit-keyframes moveY {
    from {
        top: 0;
    }

    to {
        top: calc(100vh - var(--img-size));
    }
}

@-moz-keyframes moveY {
    from {
        top: 0;
    }

    to {
        top: calc(100vh - var(--img-size));
    }
}

@-o-keyframes moveY {
    from {
        top: 0;
    }

    to {
        top: calc(100vh - var(--img-size));
    }
}

@keyframes moveY {
    from {
        top: 0;
    }

    to {
        top: calc(100vh - var(--img-size));
    }
}

h1 {
    text-shadow: 0 0 2 rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: "Permanent Marker" !important;
    font-weight: 400;
    font-style: normal;
}


.container {
    width:calc(100vw - 2rem);
    position: absolute;
    text-align: center;
    top:1rem;
    margin:1rem;
    flex-wrap: wrap;
    display: flex;
}

.container div {
    border-radius: 10px;
    
    margin: 1rem;
}

.page-header {
    background-color: var(--mid-green);
    width: calc(100vw - 10px);
    min-height: 100px;
}

.page-info {
    background-color: var(--light-green);
    min-height: 500px;
    max-width: calc(100vw - 10px);
    width: 500px;
    flex: 2 1 auto;
    padding:10px;
}

.page-gallery {
    box-shadow: 0 0 10px inset var(--dark-blue);
    min-height: 500px;
    width: 500px;
    flex: 2 1 auto;
    max-width: calc(100vw - 10px);
    background-image: url(./wave.png);
    background-position: top;
    background-size: cover;
}

.page-footer {
    min-height: 100px;
    min-width: 75vw;
    max-width: calc(100vw - 2em);
    flex: 1 0 auto;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: space-evenly;
}

.page-footer a,
.page-footer div {
    margin: 5px;
    flex: 0 0 auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--mid-green);
    box-shadow: 0 0 10px var(--dark-blue);

}

.page-footer a img,
.page-footer div img {
    margin: 10px;
    width: 50px;
    height: 50px;
}

.refrog {
    cursor: pointer;
}

.svg {

    filter: invert(100%);
}
.h2 {
    margin:4px;
}
