*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
 min-height: 120vh;
 background-color: #050505;
 line-height: 1.5;
 align-items: center;
    justify-content: center;
    display: flex;

 
}
/* Container */
.container{
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
 border: 50px solid linear-gradient(to right, #656565, #7f42a7, #6600c5,#5300a0,#757575,#757575);
    background-size: 200%;
    animation: animationGradient 2,5s linear infinite;
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
    padding: 5px;
}
/* Header */
header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 4rem;
     z-index: 999;
}
header h1{
    font-size: 1.5rem;
    color: white;
    letter-spacing: 0.1rem;
}
nav{
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: -7%;
}
nav a{
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
    transition: color 0.2s ease;
    text-decoration: none;
    color: white;
    margin-left: 10%;
}
nav a:hover{
    color: grey;
}
 
.content{
    max-width: 100%;
    max-height: 100%;
    
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    
    align-items: center;
}
.iziskvaniq{
    max-width: 80%;
    max-height: 100%;
    background-color: rgb(7, 7, 7);
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(255,255,255,0.3);
    margin-left: 10%;
    margin-top: 2%;
    
}
.content h1{
    text-align: center;
    color: white;
    font-size: 1.2rem;
    line-height: 1.7;
} 
.footer{
    margin-left: 1%;
    background-color: rgb(7, 7, 7);
    width: 98%;
    height: 100px;
    margin-top: 3% ;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(255,255,255,0.3);
}
hr{
    border-color: gray;
}
.footer p{
color: gray;
}
.footer1{
    
    justify-items: center;
    padding: 0 32rem ;
    
}
.footer1 a{
    color: gray;
    margin: 10px;
}

.footer p{
    text-align: center;
    
}
 @media (max-width: 768px){
     .body{
        min-height: 100%;
        width: 100%;
    }

        header{
            padding: 1rem 0.1remS;
        }

        nav {
            flex-direction: column;
        }
        nav img{
            
            width: 100%;  
            height: 100%; 
            margin-left: 5%;                   
        }
        nav a{
            margin-left: 5%;
        }
        .content{
            width: 100%;
        }
        .content h1{
            margin-top: 10%;
            font-size: 1.1rem;
        }
        .footer{
    width: 98%;
    height: 100px;
    
    flex-direction: column;
 }
 .footer p{
    font-size: 0.8rem;
 }
 .footer1{
    display: flex;
    justify-items: center;
    padding: 0 120px ;
}
.footer1 a{
    color: gray;
    margin: 5px;
    
}
    }