body {
    background: url(elem/Fairy_Ring.jpg);
    background-size: 50vw;
    display: flex;
    flex-wrap: nowrap; 
    overflow: auto;
}

img {
/*    position: inherit;*/
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    animation: fade 2s linear infinite alternate;
}

@keyframes fade {
    from {color: black;}
    to {color: white;}
}

.nav {
    position: fixed;
    margin-top: 2vmin;
    margin-left: 2vmin;
    font-size: 200%;
    z-index: 1;
}

.wifis {
    position: absolute; 
    width: 2vw; 
    border: 0.1vw solid green;
    filter: drop-shadow(30px 10px 4px green);
}

.wifis2 {
    position: absolute; 
    width: 2vw; 
    border: 0.1vw solid red;
    filter: drop-shadow(30px 10px 4px black);
}

.capShroom {
    filter: opacity(80%);
}

.capShroom:hover {
    transform: rotate3d(1, 1, 1, 60deg);
    border: 2vw solid;
    border-image: url(elem/ample_panel__27231.1467172334.jpg);
}

.cap {
    animation: flitter 3s linear 1s infinite;
    border: 1px solid yellow;
}

@keyframes flitter {
    0% {transform: scaleY(1) translateY(0vh);}
    50% {transform: scaleY(1.5) translateY(-20vh);}
    90% {transform: scaleY(2);}
    100% {transform: scaleY(1); translateY(-40vh);}
}