@import url(https://cdnjs.cloudflare.com/ajax/libs/uikit/3.15.6/css/uikit.min.css);
@import url(https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css);

html,
body,
#all-the-magic-goes-here {
    pointer-events: none;
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 100vh;
    background-color: #1B1B1B;
    color: #FFFFFF;
    overflow-x: hidden;
}

button {
    pointer-events: all;
}

.overlay {
    pointer-events: none;
    position: absolute;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    overflow-x: hidden;
}

.anchor-container {
    pointer-events: none;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: flex;
    align-content: space-between;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-width: 200px;
    min-height: 200px;
}

.anchor {
    pointer-events: none;
    width: 100px;
    height: 100px;
    box-shadow: inset 0px 0px 0px 1px #2e2e2e;
    position: relative;
}

.outside-tl {
    position: absolute;
    width: 100px;
    height: 100px;
    top: -900px;
    left: -900px;
}

.outside-tr {
    position: absolute;
    width: 100px;
    height: 100px;
    top: -900px;
    left: calc(100% + 900px);
}

.noclick {
    pointer-events: none;
}

.canclick {
    pointer-events: all;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.break {
    flex-basis: 100%;
    height: 0;
}

.flying {
    position: absolute;
    /* display: block; */
    /* transition: all .3s ease; */
}

.overlay-text {
    font-weight: bold;
    text-shadow: 10px 10px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.invisible {
    display: none;
}

.small {
    max-width: 100px;
}

.medium {
    max-width: 200px;
}

.large {
    max-width: 400px;
}

.xlarge {
    max-width: 800px;
}

.zoom-on-hover {
    transition: transform .2s;
}

.zoom-on-hover:hover {
    transform: scale(1.5);
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.nozoom-on-hover:hover {
    transform: scale(1) !important;
}

.website-container {
    pointer-events: all;
    display: block;
    /* box-shadow: inset 0px 0px 0px 1px #2e2e2e; */
    /* position: relative; */
    width: 100vw;
    height: 100vh;
    /* min-height: 100%; */
    overflow-x: hidden;
    overflow-y: auto;
}

.inner-container {
    position: relative;
    max-width: 1400px;
    height: 100%;
    margin: auto;
    box-shadow: inset 0px 0px 0px 1px #2e2e2e;
}

.viewport-container {
    position: relative;
    display: block;
    width: 100vw;
    height: 100vh;
    /* min-height: 100vh;
    max-height: 100vh; */
}

.block-container {
    position: relative;
    display: block;
    width: 100vw;
    min-height: 100px;
    background-color: rgb(255, 255, 255);
}

.logo-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    min-height: 100px;
    box-shadow: inset 0px 0px 0px 1px #f34545;
}

.image-container {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    min-height: 100px;
    box-shadow: inset 0px 0px 0px 1px #f34545;
}

img.shadow {
    filter: drop-shadow(-16px -8px 20px rgba(0, 0, 0, 0.3))
}

.background-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    /* background-color: rgb(161, 196, 242); */
    background: rgb(157, 204, 218);
    background: -moz-linear-gradient(180deg, rgba(157, 204, 218, 1) 0%, rgba(184, 239, 255, 1) 25%, rgba(184, 239, 255, 1) 85%, rgba(173, 220, 233, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(157, 204, 218, 1) 0%, rgba(184, 239, 255, 1) 25%, rgba(184, 239, 255, 1) 85%, rgba(173, 220, 233, 1) 100%);
    background: linear-gradient(180deg, rgba(157, 204, 218, 1) 0%, rgba(184, 239, 255, 1) 25%, rgba(184, 239, 255, 1) 85%, rgba(173, 220, 233, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9dccda", endColorstr="#addce9", GradientType=1);
}