
       body {
           padding-left: 10%;
            background-color: aqua;        }
         main{
            width: 100%;
            padding-left: 50px;
         }
        .main div {
            background-color: blanchedalmond;
            width: 80%;
            display: inline-block;
            border: 3px solid black;
            box-shadow: 4px 3px 0px #423f3f71;
        }

        .main div h3 {
            text-align: center;
            text-shadow: 2px 1px 2px gray;
            margin: 10px;
            font-family: "Bitcount Grid Double", system-ui;
            font-optical-sizing: auto;
            font-weight: 500;
            font-style: normal;
           
        }
       nav {
    background-color: blanchedalmond;
    width: 80%;
    border: 3px solid black;
    box-shadow: 4px 3px 0px #423f3f71;
    padding: 12px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav li {
    border: 2px solid black;
    background-color: white;
    padding: 8px 16px;
    box-shadow: 2px 2px 0px #423f3f71;
}

nav li a {
    text-decoration: none;
    color: black;
     font-family: "Black Ops One", system-ui;
      font-weight: 500;
}
 nav li{
    transition:.08s;
}

nav li:active{
    transform:translate(3px,3px);
    box-shadow:none;
}
.about-box{
    position: relative;
    width: 70%;
    border: 3px solid black;
    background: white;
    padding: 30px 20px 10px;
    transition: 0.3s;

}
.about-box:hover{
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.tab{
    position: absolute;
    top: -3px;
    left: -3px;
    width: 100px;
    height: 60px;
    background-color: black;
    border: 3px solid black;
    color: white;
    clip-path: polygon(0 0, 84% 0, 69% 33%, 0 33%);
}
.about-p{

    font-family: "Black Ops One", system-ui;
    font-weight: 50;
}

.skills{
    width: 80%;
    border: 3px solid black;
    padding: 20px;
    background-color: white;
    border-collapse: separate;
    border-spacing: 15px;
    box-shadow: 2px 2px 0px #423f3f71;

}

td{
    background: #57c9da;
    color: white;
    border: 2px solid black;
    text-align: center;
    padding: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
td:hover{
    background-color: rgb(37, 110, 174);
}
.skills-tab{
    position: fixed;
    width: 100px;
    height: 60px;
    background-color: black;
    border: 4px solid black;
    color: white;
    clip-path: polygon(0 0, 75% 0, 45% 33%, 0 33%);
}
.card{
    width:80%;
    background:#f5f5f5;
    border:3px solid #000;
    position:relative;
    margin:30px 0;
    padding:50px 25px 25px;
    box-shadow:4px 3px 0px #423f3f71;
}

.card-title{
    position:absolute;
    top:-3px;
    left:-3px;
    background:#000;
    color:#fff;
    padding:6px 18px;
    font-size:20px;
    clip-path:polygon(0 0,100% 0,80% 100%,0 100%);
}

.social-links{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    justify-content:center;
}

.social-links a{
    text-decoration:none;
    color:#000;
    border:3px solid #000;
    background:#fff;
    padding:12px 24px;
    font-size:22px;
    font-weight:bold;
    box-shadow:3px 3px 0 #555;
    transition:.2s;
}

.social-links a:hover{
    transform:translate(-3px,-3px);
    box-shadow:6px 2px 0 #555;
    background-image: linear-gradient(to right, #a8eb12);
}
.footer{
    width:80%;
    margin:40px 0;
    padding:55px 20px 20px;
    background:#f5f5f5;
    color:#0c0101;
    border:3px solid #000;
    box-shadow:4px 4px 0 #555;
    position:relative;
    text-align:center;
}

.footer-title{
    position:absolute;
    top:-3px;
    left:-3px;
    background:#000;
    color:#fff;
    padding:8px 18px;
    font-weight:bold;
    font-size:20px;
    clip-path:polygon(0 0,100% 0,80% 100%,0 100%);
}

.footer p{
    margin:10px 0;
}

.footer-links{
    margin:20px 0;
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.footer-links a{
    text-decoration:none;
    color:#fdb100;
    font-weight:bold;
    transition:.2s;
}

.footer-links a:hover{
    color:#7DF9FF;
    text-shadow:0 0 5px #7DF9FF;
}

.copyright{
    margin-top:20px;
    font-size:14px;
    color:#0f0202;
    font-weight: bold;
}
