﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    text-align: center;
    white-space: normal;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */

a { color: #0366d6; }

.btn-primary {
    background-color: #1b6ec2;
    border-color: #1861ac;
    color: #fff;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: #1b6ec2;
    border-color: #1861ac;
    color: #fff;
}

/* Sticky footer styles
-------------------------------------------------- */

html { font-size: 14px; }

@media (min-width: 768px) {
    html { font-size: 16px; }
}

.border-top { border-top: 1px solid #e5e5e5; }

.border-bottom { border-bottom: 1px solid #e5e5e5; }

.box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */

html {
    min-height: 100%;
    position: relative;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    bottom: 0;
    line-height: 60px; /* Vertically center the text there */
    position: absolute;
    white-space: nowrap;
    width: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    display: grid;
    font-family: Roboto;
    height: 100vh;
}

* { box-sizing: border-box; }

.inp {
    border-radius: 3px;
    margin: auto;
    max-width: 280px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.inp .label {
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    font-weight: 500;
    left: 12px;
    pointer-events: none;
    position: absolute;
    top: 20px;
    transform: translate3d(0, 0, 0);
    transform-origin: 0 0;
    transition: all .2s ease;
}

.inp .focus-bg {
    background: rgba(0, 0, 0, 0.05);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scaleX(0);
    transform-origin: left;
    width: 100%;
    z-index: -1;
}

.inp input {
    -webkit-appearance: none;
    appearance: none;
    background: rgba(0, 0, 0, 0.02);
    border: 0;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    color: #000;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    height: 56px;
    padding: 16px 12px 0 12px;
    transition: all .15s ease;
    width: 100%;
}

.inp input:hover {
    background: rgba(0, 0, 0, 0.04);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}

.inp input:not(:placeholder-shown) + .label {
    color: rgba(0, 0, 0, 0.5);
    transform: translate3d(0, -12px, 0) scale(0.75);
}

.inp input:focus {
    background: rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 -2px 0 #0077FF;
    outline: none;
}

.inp input:focus + .label {
    color: #0077FF;
    transform: translate3d(0, -12px, 0) scale(0.75);
}

.inp input:focus + .label + .focus-bg {
    transform: scaleX(1);
    transition: all .1s ease;
}

@import url('https://fonts.googleapis.com/css?family=Montserrat:700');

.hero {
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.hero__title {
    color: #fff;
    font-size: 50px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.cube {
    animation: cube 12s ease-in forwards infinite;
    border: solid 1px #f9f9f9;
    height: 10px;
    left: 45vw;
    position: absolute;
    top: 80vh;
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    transform-origin: top left;
    width: 10px;
}

.cube:nth-child(2n) { border-color: #fcfcfc; }

.cube:nth-child(2) {
    animation-delay: 2s;
    left: 25vw;
    top: 40vh;
}

.cube:nth-child(3) {
    animation-delay: 4s;
    left: 75vw;
    top: 50vh;
}

.cube:nth-child(4) {
    animation-delay: 6s;
    left: 90vw;
    top: 10vh;
}

.cube:nth-child(5) {
    animation-delay: 8s;
    left: 10vw;
    top: 75vh;
}

.cube:nth-child(6) {
    animation-delay: 10s;
    left: 20vw;
    top: 10vh;
}

@keyframes cube {
    from {
        opacity: 1;
        transform: scale(0) rotate(0deg) translate(-50%, -50%);
    }

    to {
        opacity: 0;
        transform: scale(20) rotate(960deg) translate(-50%, -50%);
    }
}

.normal-div { text-align: center; }