
.Nav{
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    margin-bottom: 30px;
    width: 800px;
}
.Nav div{
    margin-left: 100px;
    border: red 2px solid;
    border-radius: 20px;
    padding: 5px 10px;
    transition: .3s ease-in-out;
    
}
.Nav div:hover{
    background-color: red;
    color: white;
    
    box-shadow: red 0 0 20px;
    transform:translateY(-3px);

}
.Nav div a:hover{
    color: white;
}
.dl{
    background-color: black;
    color: white;
    border-radius: 50px;
    border: solid white 1px;
    width: 100px;
    height: 30px;
    margin-top: 30px;
    }
    .ld{
        background-color: rgb(255, 255, 255);
        color: rgb(0, 0, 0);
        border-radius: 50px;
        border: solid rgb(0, 0, 0) 1px;
        width: 100px;
    height: 30px;
    margin-top: 30px;
    }
    .nav{
        display: flex;
        justify-content: space-around;
    }


@media(max-width:1000px){
    .Nav{
        display: grid;
        grid-template-rows: auto auto;

    }
    .Nav div{
        margin: 10px 0px;
    }
    
    
}