    * {
        margin: 0;
        padding: 0;
        color: rgb(192, 192, 192);
        font-family: 'Mulish', sans-serif;
        text-decoration: none;
        box-sizing: border-box;
    }
    
    @-webkit-keyframes AnimationBG {
        0% {
            background-position: 0% 50%
        }
        50% {
            background-position: 100% 50%
        }
        100% {
            background-position: 0% 50%
        }
    }
    
    @-moz-keyframes AnimationBG {
        0% {
            background-position: 0% 50%
        }
        50% {
            background-position: 100% 50%
        }
        100% {
            background-position: 0% 50%
        }
    }
    
    @-o-keyframes AnimationBG {
        0% {
            background-position: 0% 50%
        }
        50% {
            background-position: 100% 50%
        }
        100% {
            background-position: 0% 50%
        }
    }
    
    @keyframes AnimationBG {
        0% {
            background-position: 0% 50%
        }
        50% {
            background-position: 100% 50%
        }
        100% {
            background-position: 0% 50%
        }
    }
    
    body {
        background: linear-gradient(270deg, #630838, #270116);
        background-size: 400% 400%;
        height: 100%;
        -webkit-animation: AnimationBG 30s ease infinite;
        -moz-animation: AnimationBG 30s ease infinite;
        -o-animation: AnimationBG 30s ease infinite;
        animation: AnimationBG 30s ease infinite;
    }
    
    img,
    video {
        max-width: 100%;
        height: auto;
        border-radius: 10%;
    }
    
    .container {
        display: flex;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-right: -50%;
        transform: translate(-50%, -50%);
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        align-items: center;
        align-content: center;
        max-width: 1200px;
        margin: 0px auto;
    }
    
    .links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 10px;
        max-width: 200px;
    }
    
    .links>a {
        display: flex;
        align-items: center;
        padding: 3px;
    }
    /*=================================*/
    
    nav {
        height: 80px;
        width: 100%;
    }
    
    .logo {
        font-size: 35px;
        line-height: 80px;
        padding-left: 20px;
        font-weight: bold;
    }
    
    nav ul {
        float: right;
        margin-right: 20px;
    }
    
    nav ul li {
        display: inline-block;
        line-height: 80px;
        margin: 0 5px;
    }
    
    nav ul li a {
        font-size: 17px;
        padding: 7px 13px;
        border-radius: 3px;
    }
    
    a.link {
        transition: .5s;
    }
    
    a.active,
    a.link:hover {
        background-color: #8d11539c;
    }
    
    .checkbtn {
        font-size: 30px;
        float: right;
        line-height: 80px;
        margin-right: 40px;
        cursor: pointer;
        display: none;
    }
    
    #check {
        display: none;
    }
    /*--------------------------*/
    /*----- MEDIA QUERRY -----*/
    /*--------------------------*/
    
    @media (max-width: 952px) {
        .logo {
            font-size: 30px;
            padding-left: 20px;
        }
        nav ul li a {
            font-size: 16px;
        }
    }
    
    @media (max-width: 858px) {
        .checkbtn {
            display: block;
        }
        nav ul {
            position: fixed;
            width: 100%;
            height: 100vh;
            top: 80px;
            left: -100%;
            top: 80px;
            transition: all .5s;
            text-align: center;
            background-color: #3c0021;
            z-index: 100;
        }
        nav ul li {
            display: block;
            margin: 50px 0;
            line-height: 30px;
        }
        nav ul li a {
            font-size: 20px;
        }
        a.link:hover,
        a.active {
            background: none;
            color: #8d11539c;
        }
        #check:checked~ul {
            left: 0;
        }
    }