/* =============================================================================
   HTML5 CSS Reset Minified - Eric Meyer
   ========================================================================== */

   html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
   body{line-height:1}
   article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
   nav ul{list-style:none}
   blockquote,q{quotes:none}
   blockquote:before,blockquote:after,q:before,q:after{content:none}
   a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;text-decoration:none}
   mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
   del{text-decoration:line-through}
   abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
   table{border-collapse:collapse;border-spacing:0}
   hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
   input,select{vertical-align:middle}
   li{list-style:none}
   
   
   /* =============================================================================
      My CSS
      ========================================================================== */
   
   /* ---- base ---- */
   
   html, body {
     width: 100%;
     height: 100%;
     overflow: hidden; /* Prevent scrolling */
     margin: 0;
     padding: 0;
     font-family: Arial, Helvetica, sans-serif;
   }
   
   body {
     background-color: #222222; /* Solid dark gray background */
     display: flex;
     justify-content: center;
     align-items: center;
   }
   
   #particles-js {
     position: absolute;
     width: 100%;
     height: 100%;
     background: transparent;
   }
   
   .container {
     z-index: 1;
     max-width: 600px;
     padding: 20px;
     background: rgba(43, 43, 43, 0.9); /* Slightly lighter gray for contrast */
     border-radius: 10px;
     text-align: center;
   }
   
   .image {
     border-radius: 50%;
     max-width: 100%;
     height: auto;
   }
   
   .header1, .header2, .header3, .link1 {
     color: #ffffff;
     font-family: 'Ubuntu Mono', monospace;
   }
   
   .header1 {
     font-size: 2.5em;
   }
   
   .header2 {
     font-size: 1.2em;
   }
   
   .header3 {
     font-size: 1.5em;
   }
   
   .link1 {
     font-size: 1.5em;
     margin: 0 5px;
     transition: color 0.5s;
   }
   
   .link1:hover {
     color: #1ab6e9;
   }
   
   @media (max-width: 767px) {
     body {
       background-color: #222222; /* Keep the same solid dark gray for mobile */
     }
   
     .header1 {
       font-size: 6vw; /* Increased from 5vw */
     }
   
     .header2 {
       font-size: 4vw; /* Increased from 3vw */
     }
   
     .header3 {
       font-size: 5vw; /* Increased from 4vw */
     }
   
     .link1 {
       font-size: 5vw; /* Increased from 4vw */
     }
   
     .container {
       padding: 15px; /* Increased from 10px */
     }
   }
   