nav a{
    
    color: black;
    text-decoration: none;
    margin-right: 20px;
    
    }
    
    nav{
    text-align: center;
    justify-content:space-around; 
    margin-bottom: 100px; 
    margin-top: 30px;  
    }

    


    .boxes{
        display:flex;
        justify-content:space-around;
        padding:80px 100px;
        gap:20px;
      }
      
      .box{
        background:#1a1a1a;
        padding:30px;
        border-radius:15px;
        width:40%;
        text-align:center;
        text-decoration:none;
        color:white;
        transition: transform .3s, background .3s;
      }
      
      .box h3{color:gold;margin-bottom:15px;}
      .box p{opacity:.8;}
      
      .box:hover{
        transform:translateY(-10px);
        background:#2c2c2c;
      }
      