* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    height: 100%;
    background: #111;
}

.view {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.view img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.view .hedgehog {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    opacity: 0.84;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}
