body{
    margin: 0;
    padding: 0;
    box-sizing: 0;
    background: black;
}

.main{
    background: rgb(32, 32, 32);
    width: 1300px;
    margin: auto;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.header{
    display: flex;
    justify-content: space-between;
    background: rgb(32, 32, 32);
    border-bottom: 2px solid white;
}

.logo{
    width: 50px;
}

.menu{    
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu_link{
    color: rgb(224, 200, 0);
    text-decoration: none;
    padding: 10px;
    display: inline-block;
    font-weight: 700;
}
.menu_link:hover{
    background: rgb(224, 200, 0);
    color: rgb(32, 32, 32);
}






.vernagir{
    text-align: center;
    color: white;
}

.content{
    background: black;
    border-radius: 10px; 
    width: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px;
    border: 2px solid rgb(224, 200, 0);
    padding: 10px;
}

.nkarner{
    width: 300px;
    margin: 5px;
    border-radius: 10px;
}






.footer{
    border-top: 2px solid white;
    height: auto;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    background: rgb(32, 32, 32);
}

.footer-nkar{
    width: 20px;
    height: 20px;
    margin-top: 15px;
}

.footer-name{
    color: rgb(224, 200, 0);
}