* {
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
}

.header {
    position: relative;
    overflow: hidden;
    height: 95vh;
    width: 100vw;
    background-color: black;
    box-shadow: 0px 10px 5px 0px rgba(0,0,0,0.75);
}

.animation {
    height: 100%;
    width: 100%;
    z-index: 1;
}

.animation video {
    height: 100%;
    width: auto;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.animation .center {
    position: absolute;
    bottom: 0;
    height: 23%;
    min-height: 180px;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    width: 30%;
    min-width: 200px;
}

.center .js-only .btn {
    position: absolute;
    bottom: 75%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.no-script {
    position: absolute;
    top: 50px;
    text-align: center;
    width: 400px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.198);
    color: white;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding-top: 10px;
    -webkit-filter: opacity(0.6);
    filter: opacity(0.6);
}

.or {
    color: white;
    font-size: 20px;
}

.down {
    color: white;
    font-size: 30px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    -webkit-transform: scaleX(3);
    transform: scaleX(3);
    cursor: pointer;
    width: 20px;
    margin: 10px auto;
}

.center-down {
    position: absolute;
    bottom: 0;
    height: 50%;
    width: 100%;
    text-shadow: none;
    -webkit-transition: color 0.3s, text-shadow 0.3s, filter -webkit-filter 0.3s;
    transition: color 0.3s, text-shadow 0.3s, filter -webkit-filter 0.3s;
    -webkit-filter: opacity(0.7);
    filter: opacity(0.7);
}

.center-down:hover {
    text-shadow: 0px 0px 10px rgb(156, 34, 255);
    color: rgba(255, 255, 255, 0.76);
    -webkit-transition: color 0.3s, text-shadow 0.3s, filter -webkit-filter 0.3s;
    transition: color 0.3s, text-shadow 0.3s, filter -webkit-filter 0.3s;
    -webkit-filter: opacity(.95);
    filter: opacity(.95);
}

.contact {
    position: relative;
    width: 100vw;
    -webkit-transition: height 0.5s;
    transition: height 0.5s;
    overflow: hidden;
}

.contact .panel {
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.contact .panel .content{
    background-color: rgba(68, 68, 68, 0.424);
    border-radius: 5px;
    width: 70%;
    height: 230px;
    min-width: 250px;
    padding: 20px;
    margin: 45px auto;
    text-align: center;
}

.contact-title {
    margin: 15px;
}

.about {
    background: linear-gradient(195deg, rgb(91, 13, 155), rgb(126, 5, 163));
    text-align: center;
    box-shadow: 0px -10px 5px 0px rgba(0, 0, 0, 0.479);
    padding: 5%;
}

.about div {
    background-color: rgba(129, 128, 128, 0.424);
    border-radius: 5px;
    width: 70%;
    min-width: 250px;
    padding: 5%;
    margin: auto;
    text-align: center;
}

.about .title {
    font-size: 35px;
    margin: 30px 10px 0;
    color: rgb(255, 255, 255);
}

.about .content {
    color: rgb(255, 255, 255);
    font-size: 18px;
    padding: 3%;
}

.btn {
    width: 95px;
    height: 40px;
    display: block;
    cursor: pointer;
    position: relative;
    z-index: 0;

    text-decoration: none;
    font-size: 17px;
    color: white;
    border: 1px solid;
    border-color: white;
    outline: none;

    background: transparent;
    border-radius: 5px;
    margin: 0 auto;

    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s;
}

.btn.active {
    color: black;
    border-color: black;
    background-color: white;
}

.btn:active {
    color: #000;
    border-color: transparent;
}

.btn:before {
    content: '';
    background: linear-gradient(45deg,#5100ff, #7a00ff, #ff00c8, #5100ff);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    -webkit-filter: blur(1px);
    filter: blur(1px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    -webkit-animation: glowing 20s linear infinite;
    -moz-animation: glowing 20s linear infinite;
    -ms-animation: glowing 20s linear infinite;
    -o-animation: glowing 20s linear infinite;
    animation: glowing 20s linear infinite;
    -webkit-filter: opacity(0);
    filter: opacity(0);
    -webkit-transition: filter -webkit-filter 0.3s ease-in-out;
    transition: filter 0.3s ease-in-out;
    border-radius: 5px;
}

.btn:hover {
    border-color: transparent;
    -webkit-transition: filter -webkit-filter 0.3s;
    transition: filter -webkit-filter 0.3s;
    color: white;
}

.btn:hover:before {
    -webkit-filter: opacity(1);
    filter: opacity(1);
}

.btn:hover::after {
    background-color: rgba(0, 0, 0, 0.787);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.btn::after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    left: 0;
    top: 0;
    border-radius: 5px;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.btn:active::after {
    background: transparent;
}

.btn-purple:hover::after {
    background-color: rgba(80, 25, 143, 0.787);
}

.btn-cta {
    width: 130px;
    height: 40px;
    font-size: 30px;
    padding: 5px;
}

.btn-link {
    padding-top: 8px;
    height: 30px;
}

.btn-mail {
    margin-top: 30px;
    padding-top: 10px;
    width: 180px;
    height: 30px;
}

@-webkit-keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

@-moz-keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

@-ms-keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

@-o-keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.footer {
    bottom: 0;
    height: 45px;
    background-color: rgb(56, 56, 56);
    width: 100vw;
}

.copyright {
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
    width: 200px;
    height: 100%;
}

.copyright-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    -webkit-transition: transform 0.8s;
    transition: transform 0.8s;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.copyright .fr-face, .copyright .bc-face {
    width: 100%;
    height: 100%;
}

.copyright:hover .copyright-inner {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.fr-face, .bc-face {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

.bc-face {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.cr-text {
    color: rgba(255, 255, 255, 0.452);
    margin-top: 14px;
    margin-left: 10px;
}