 body {
            background: rgb(58, 58, 58);
            color: white;
            font-family: 'varsity regular', Times, serif;
            margin: 0;
            padding: 0;
            font-size: 30px;
            background-color: black;
            justify-content: center;
            align-items: center;
            text-transform: lowercase;
        }

        .slider{
            width: 800px;
            height: 500px;
            border-radius: 10px;
            overflow: hidden;
        }

        .slides{
           width: 500%;
           height: 500px;
           display: flex; 
        }

        .slides input{
            display: none;
        }

        .slide{
            width: 20%;
            transition: 2s;
        }

        .slide img{
            width: 800px;
            height: 500px;
        }

        .navigation-manual{
            position: absolute;
            width:800px;
            margin-top: 450px;
            display: flex;
            justify-content: center;
            margin-left: -80px;
        }

        .manual-btn{
            border: 2px solid #ccc;
            padding: 5px;
            border-radius: 10px;
            cursor: pointer;
            transition: 1s;
        }

        .manual-btn:not(:last-child){
            margin-right: 40px;
        }

        .manual-btn:hover{
            background-color: #ccc;
        }

        #radio1:checked ~ .first{
            margin-left: 0%;
        }

        #radio2:checked ~ .first{
            margin-left: -25%;
        }

        #radio3:checked ~ .first{
            margin-left: -50%;
        }

        #radio4:checked ~ .first{
            margin-left: -75%;
        }

        .navigation-auto{
            position: absolute;
            display: flex;
            width: 80px;
            justify-content: center;
            margin-top: 450px;
            margin-left: 300px;
        }

        .navigation-auto div{
            border: 2px solid#333;
            padding: 5px;
            border-radius: 10px;
            transition: 1s;
        }

        .navigation-auto div:not(last-child){
            margin-right: 40px;
        }

        #radio1:checked ~ .navigation-auto .auto-btn-1{
            background-color:#ccc;
        }

        #radio2:checked ~ .navigation-auto .auto-btn-2{
            background-color:#ccc;
        }

        #radio3:checked ~ .navigation-auto .auto-btn-3{
            background-color:#ccc;
        }

        #radio4:checked ~ .navigation-auto .auto-btn-4{
            background-color:#ccc;
        }

/* HEADER */


        header {
            background: black;
            padding: 20px;
            height: 50px;
            text-align: center;
            background-image: url();
            background-size: 100%;
        }

        header a {
            color: white;
            text-decoration: none;
            text-transform: lowercase;
        }
        
        nav ul {
            margin: 0;
            padding: 0;
            list-style-type: none;
        }

       nav li {
            display: inline-block;
            margin: 30px;
            margin-top: -700px;
        }
        nav a {
            color: white;
            text-decoration: none;
        }
         
        nav a:hover{
         color:red;
        }

        nav li:first-child{
            margin-right: auto;
        }

        .sidebar{
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 200px;
            z-index: 0;
            background-color: black;
            backdrop-filter: blur(10px);
            box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
            display: none;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
        }


    /* FEATURES */

        .features {
            background: white;
            color: gray;
            padding: 20px;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            font-family: anarchaos;
            width: auto;
        }
        
        .features figure{
            margin: auto;
            text-align: center;
            text-transform: uppercase;
            width: 200px;
        }

        .features figure:hover{
            color: red;
            transform: scale(1.02);
        }

        .features figure img {
            border: 1px solid white;
            border-radius: 50%;
            box-shadow: gray 0px 0px 10px;
            width: 200px;
            
        }
        .features a {
            text-decoration: none;
            color: inherit;
             margin: auto;
            text-align: center;
            text-transform: uppercase;
            width: 50px;
        }
    .features figure video {
    border: 1px solid white;
    border-radius: 50%;
    box-shadow: gray 0px 0px 10px;
    width: 200px;
    height: 200px;
    object-fit: fill;
    }

    

        div {
            background: none;
            width: 100px;
            margin: auto;
        }
        
        /* RESPONSIVE RULES */

       
        
        
            @media (max-width: 600px) {
                header {
                    height: auto;
                    padding: 10px;
                }
                
                nav li {
                    display: block;
                    margin: 10px 0;
                    margin-top: -700px;
                }
                
                .features {
                    flex-direction: column;
                    align-items: center;
                }
                
                .features figure {
                    width: 100%;
                    max-width: 300px;
                }
            }
            @media (max-width: 600px) {
                header {
                    height: auto;
                    padding: 10px;
                }
                
                nav li {
                    display: inline-block;
                    margin: 10px;
                    margin-top: 0;
                }
                
                .features {
                    flex-direction: column;
                    align-items: center;
                }
                
                .features figure {
                    width: 100%;
                    max-width: 300px;
                }
            }

        /* FOOTER */

        footer {
            background: black;
            color: white;
            font-size: 20px;
            padding: 20px 20px;
            text-align: center;
            text-transform: lowercase;
            font-family: varsity regular;
        }