* {
     margin: 0; 
     padding: 0; 
     box-sizing; border-box; 
    }

    
    body {
        font-family: "Special Gothic Expanded One";
        background-color: #234;
        color: #eee;
        overflow-x: hidden; 
        margin: 0;
        padding: 20px;
    }

    h1 {
        font-size: 13rem; 
        color: #6FC276;
        margin-bottom: 150px;
        margin-top: 20px;
        line-height: 1.2;
        text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.5);
    }

    .portfolio .main {
        width: 80vw;
        aspect-ratio: 1 / 1;
        background: linear-gradient(135deg, #ff1493, #8a2be2);
        border: 40px solid hotpink;
        margin: 40px auto;
        border-radius: 50%;
        position: relative;
    
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    
        font-family: "Special Gothic Expanded One", sans-serif;
        padding: 20px;
        box-sizing: border-box;
        overflow: visible;
    }

    nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 100px;
    }
    
    nav a {
        color: #6FC278;
        background-color: rgba(0, 0, 0, 0.3);
        padding: 10px 20px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: bold;
        font-size: 2rem;
    }
    
    nav a:hover {
        background-color: rgba(0, 0, 0, 0.6);
        transform: scale(1.05);
    }
    
        
    
    footer {
        font-family: "Special Gothic Expanded One";
        color: #eee;
        
        padding: 20px 0;
        font-size: 1rem;
        text-align: center;
        bottom: 0;
        width: 25%
       
    }

    media screen and (max-width: 768px) {
      table, thead, tbody, th, td, tr {
        display: block;
      }
      td {
        text-align: left;
      }
    }


   



        
        