﻿/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 120px;
    padding-bottom: 0px;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 4px;
    padding-right: 4px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }

    .body-content {
        padding: 0;
    }
}

.zoom {
    padding: 0px;
    background-color: green;
    transition: transform .2s;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

    .zoom:hover {
        -ms-transform: scale(1.5); /* IE 9 */
        -webkit-transform: scale(1.5); /* Safari 3-8 */
        transform: scale(1.5);
    }

#image2 {
    animation: 3s linear infinite slidein, 3s ease-out 5s infinite slideout;
}

#image3 {
    animation: 2s linear infinite slideout;
}

#imgg1 {
    animation: 8s linear infinite slide3;
}

#imgg2 {
    animation: 4s linear infinite slide3;
}

@keyframes slide3 {
    from {
        transform: translateX(0px);
    }

    to {
        transform: translateX(150px);
    }
}

@keyframes slidein {
    from {
        transform: translateX(0px);
    }

    to {
        transform: translateX(100px);
    }
}

@keyframes slideout {
    from {
        filter: hue-rotate(0deg);
    }

    to {
        filter: hue-rotate(360deg);
    }
}

@keyframes slideoutx {
    from {
        filter: hue-rotate(90deg);
    }

    to {
        filter: hue-rotate(150deg);
    }
}

@keyframes slideouty {
    from {
        transform: translateX(-2px);
        font-size: smaller;
    }

    to {
        transform: translateX(2px);
        font-size:medium;
    }
}

.NavigationMenu {
    width: 100%;
    background: transparent;
}

.NavigationMenu:hover {
    /*background-color: #d917c999;*/
}

.menumstyle:hover {
    /*animation: 2s linear infinite slideouty;*/
}

#imgfix {
    background-color: yellow;
    border-radius: 50%;
    height: 50px;
    aspect-ratio: 2 / 1;
    animation: 4s linear 0s infinite alternate rise, 24s linear 0s infinite psychedelic;
}

@keyframes rise {
    from {
        transform: translateY(-22px);
    }

    to {
        transform: translateY(-122px);
    }
}

@keyframes psychedelic {
    from {
        filter: hue-rotate(0deg);
    }

    to {
        filter: hue-rotate(360deg);
    }
}
#runimg {
    background-color: yellow;
    border-radius: 50%;
    height: 25px;
    aspect-ratio: 1 / 1;
    animation: 2s linear 0s infinite alternate animating-multiple-properties;
}

@keyframes animating-multiple-properties {
    from {
        transform: translateY(-25px);
        background-color: red;
        filter: brightness(75%);
    }

    to {
        transform: translateY(-125px);
        background-color: orange;
    }
}

#cvas {
    background-color: rgb(0 0 0 / 5%);
    height: 120px;
    width: 50%;
}

html {
    scroll-behavior: smooth;
}

.btns {
    background-color: #ddd;
    border: none;
    color: black;
    padding: 2px 4px;
    text-align: center;
    font-size: 32px;
    margin: 4px 2px;
    transition: 0.3s;
}

    .btns:hover {
        background-color: #3e8e41;
        color: white;
    }

.imgs {
    margin-right: 4px;
    margin-top:0px;
}

contxx {
    margin: 0;
    padding: 0;
}
.center {
    height: calc(min(90vw, 75vh));
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.wave {
    width: 10px;
    height: 100px;
    background: linear-gradient(45deg, cyan, #fff);
    margin: 10px;
    animation: wave 1s linear infinite;
    border-radius: 20px;
}

    .wave:nth-child(2) {
        animation-delay: 0.1s;
    }

    .wave:nth-child(3) {
        animation-delay: 0.2s;
    }

    .wave:nth-child(4) {
        animation-delay: 0.3s;
    }

    .wave:nth-child(5) {
        animation-delay: 0.4s;
    }

    .wave:nth-child(6) {
        animation-delay: 0.5s;
    }

    .wave:nth-child(7) {
        animation-delay: 0.6s;
    }

    .wave:nth-child(8) {
        animation-delay: 0.7s;
    }

    .wave:nth-child(9) {
        animation-delay: 0.8s;
    }

    .wave:nth-child(10) {
        animation-delay: 0.9s;
    }

@keyframes wave {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

.loader {
    background: #666;
    background: radial-gradient(#333, #666);
    position: relative;
    z-index: 99999;
    height: 120px;
    width: 120px;
    margin-left: 0px;
    margin-top: 50px;
}

.loader-inner {
    bottom: 0;
    height: 60px;
    left: 0;
    margin: auto;
    position: relative;
    right: 0;
    top: 0;
    width: 100px;
    margin-top: 5px;
}

.loader-line-wrap {
    animation: spin 2000ms cubic-bezier(.175, .885, .32, 1.275) infinite;
    box-sizing: border-box;
    height: 50px;
    left: 0;
    overflow: hidden;
    position: relative;
    top: 0;
    transform-origin: 50% 100%;
    width: 100px;
    margin-top: -50px;
}

.loader-line {
    border: 4px solid transparent;
    border-radius: 100%;
    box-sizing: border-box;
    height: 100px;
    left: 0;
    margin: 0 auto;
    position: relative;
    right: 0;
    top: 0;
    width: 100px;
}

.loader-line-wrap:nth-child(1) {
    animation-delay: -50ms;
}

.loader-line-wrap:nth-child(2) {
    animation-delay: -100ms;
}

.loader-line-wrap:nth-child(3) {
    animation-delay: -150ms;
}

.loader-line-wrap:nth-child(4) {
    animation-delay: -200ms;
}

.loader-line-wrap:nth-child(5) {
    animation-delay: -250ms;
}

.loader-line-wrap:nth-child(1) .loader-line {
    border-color: hsl(0, 80%, 60%);
    height: 90px;
    width: 90px;
    top: 7px;
}

.loader-line-wrap:nth-child(2) .loader-line {
    border-color: hsl(60, 80%, 60%);
    height: 76px;
    width: 76px;
    top: 14px;
}

.loader-line-wrap:nth-child(3) .loader-line {
    border-color: hsl(120, 80%, 60%);
    height: 62px;
    width: 62px;
    top: 21px;
}

.loader-line-wrap:nth-child(4) .loader-line {
    border-color: hsl(180, 80%, 60%);
    height: 48px;
    width: 48px;
    top: 28px;
}

.loader-line-wrap:nth-child(5) .loader-line {
    border-color: hsl(240, 80%, 60%);
    height: 34px;
    width: 34px;
    top: 35px;
}

@keyframes spin {
    0%, 15% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.align-center {
    display: flex;
    align-items: center;
}

.inline-flex {
    display: inline-flex;
}

form {
    padding: 0px 0;
    border-bottom: 0px solid #ccc;
}

.search {
    display: flex;
    outline: 1px solid #cccccc;
}

    .search > input {
        flex-grow: 1;
        border: 0;
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

        .search > input:focus {
            outline: none;
        }

    .search > button {
        padding: 0.8rem 2rem;
        border: 0;
        cursor: pointer;
        font-size: 1rem;
        background: #cccccc;
    }

.bottom {
    margin-top: 10px;
    font-size: 14px;
}

.checkbox-block {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

    .checkbox-block input {
        margin-right: 5px;
        cursor: pointer;
    }

.radio-block input {
    margin: 0 3px 0 10px;
}
