﻿/* 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 {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* 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 {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}

/* Forbidden page
-------------------------------------------------- */

.whistle {
    width: 20%;
    fill: #f95959;
    margin: 100px 40%;
    text-align: left;
    transform: translate(-50%, -50%);
    transform: rotate(0);
    transform-origin: 80% 30%;
    animation: wiggle .2s infinite;
}

@keyframes wiggle {
    0% {
        transform: rotate(3deg);
    }

    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(3deg);
    }
}

.h1-forbidden {
    margin-top: -100px;
    margin-bottom: 20px;
    color: #facf5a;
    text-align: center;
    font-family: 'Raleway';
    font-size: 90px;
    font-weight: 800;
}

.h2-forbidden {
    color: #455d7a;
    text-align: center;
    font-family: 'Raleway';
    font-size: 30px;
    text-transform: uppercase;
}

/* 404 - Page not found
-------------------------------------------------- */

.error-container {
    text-align: center;
    font-size: 180px;
    font-family: 'Catamaran', sans-serif;
    font-weight: 800;
    margin: 20px 15px;
}

    .error-container > span {
        display: inline-block;
        line-height: 0.7;
        position: relative;
        color: #FFB485;
    }

        .error-container > span > span {
            display: inline-block;
            position: relative;
        }

        .error-container > span:nth-of-type(1) {
            perspective: 1000px;
            perspective-origin: 500% 50%;
            color: #F0E395;
        }

            .error-container > span:nth-of-type(1) > span {
                transform-origin: 50% 100% 0px;
                transform: rotateX(0);
                animation: easyoutelastic 8s infinite;
            }

        .error-container > span:nth-of-type(3) {
            perspective: none;
            perspective-origin: 50% 50%;
            color: #D15C95;
        }

            .error-container > span:nth-of-type(3) > span {
                transform-origin: 100% 100% 0px;
                transform: rotate(0deg);
                animation: rotatedrop 8s infinite;
            }

@keyframes easyoutelastic {
    0% {
        transform: rotateX(0);
    }

    9% {
        transform: rotateX(210deg);
    }

    13% {
        transform: rotateX(150deg);
    }

    16% {
        transform: rotateX(200deg);
    }

    18% {
        transform: rotateX(170deg);
    }

    20% {
        transform: rotateX(180deg);
    }

    60% {
        transform: rotateX(180deg);
    }

    80% {
        transform: rotateX(0);
    }

    100% {
        transform: rotateX(0);
    }
}

@keyframes rotatedrop {
    0% {
        transform: rotate(0);
    }

    10% {
        transform: rotate(30deg);
    }

    15% {
        transform: rotate(90deg);
    }

    70% {
        transform: rotate(90deg);
    }

    80% {
        transform: rotate(0);
    }

    100% {
        transform: rotateX(0);
    }
}