When ever i view my website its slightly zoomed in and i have to scroll left and right


   html, body, div, span, applet, object, iframe,
   h1, h2, h3, h4, h5, h6, p, blockquote, pre,
   a, abbr, acronym, address, big, cite, code,
   del, dfn, em, img, ins, kbd, q, s, samp,
   small, strike, strong, sub, sup, tt, var,
   b, u, i, center,
   dl, dt, dd, ol, ul, li,
   fieldset, form, label, legend,
   table, caption, tbody, tfoot, thead, tr, th, td,
   article, aside, canvas, details, embed, 
   figure, figcaption, footer, header, hgroup, 
   menu, nav, output, ruby, section, summary,
   time, mark, audio, video {
       margin: 0;
       padding: 0;
       border: 0;
       font-size: 100%;
       font: inherit;
       vertical-align: baseline;
   }
   
   article, aside, details, figcaption, figure, 
   footer, header, hgroup, menu, nav, section {
       display: block;
   }
   
   ol, ul { list-style: none; }
   
   blockquote, q {
       quotes: none;
   }
   
   blockquote:before, blockquote:after,
   q:before, q:after {
       content: '';
   }
   
   *, *::before, *::after {
    box-sizing: border-box;
    }
   
   
   body {
        background-color: black;
        color: white;
        font-family: Arial, Helvetica, sans-serif;
        line-height: 1.8;
        margin: 0;
        border: none;
   }
   
   a {
        display: inline-block; 
        color: white;
        text-decoration: none;
        transition: 0.3s;
       
   }
   
   a:hover {
        color: #d8d8d8;
        text-shadow: 0 0 4px white;
        transform: scale(1.05);
   }
   
   
   img {
        width: 100%;
   }
   
   
   
   .nav {
        width: 100%;
        padding: 20px 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #0a0a0a;
        border-bottom: 1px solid #333;
   }
   
   #logo {
        width: 80px;
        filter: invert(1);
        margin-left: 30px;
   }
   
   .nav-right a {
        margin-left: 30px;
        font-size: 1.3rem;
        letter-spacing: 1px;
        
       
   }
   .nav-right{
        margin-right: 30px;
   }
   
   
   
   .hero {
       text-align: center;
       padding: 120px 20px 80px;
       background: black;
   }
   
   .hero-title {
       font-size: 4rem;
       letter-spacing: 3px;
       text-transform: uppercase;
       margin-bottom: 10px;
   }
   
   .hero-subtitle {
       font-size: 1.8rem;
       opacity: 0.8;
   }
   
 
   
   .about {
       width: 60%;
       margin: auto;
       padding: 60px 20px;
       border-top: 1px solid #333;
       border-bottom: 1px solid #333;
   }
   
   .about h2 {
       font-size: 2.5rem;
       margin-bottom: 20px;
       text-transform: uppercase;
       letter-spacing: 2px;
   }
   
   
   
   #skills {
       margin-top: 60px;
       background-color: #e8e9e8;
       padding: 30px;
       border-radius: 10px;
       color: black; 
   }
   
   #skills h1 {
       margin-bottom: 20px;
       text-align: center;
       font-size: 0.9rem;
   }

.resume-display {
    width: 80%;
    margin: 50px auto;
    text-align: center;
}

.resume-display h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.resume-display iframe,
.resume-display img {
    border: 1px solid #333;
    border-radius: 4px;
    max-width: 100%;
    height: auto;
}
#certs {
    width: 80%;
    margin: 50px auto;
    text-align: center;
}

#certs h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    justify-items: center;
    align-items: center;
}

.cert-grid img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cert-grid img:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.cert-card {
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    
}

.cert-card div[data-share-badge-id] {
    width: 150px;
    height: 270px;
}
.samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
}

.sample-card {
    background-color: #111;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sample-card img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.sample-card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.sample-card p {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.sample-card a {
    color: white;
    text-decoration: underline;
}

.sample-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

   