/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
   
  .text1 {
    position: absolute;
    top: 150px;
    left: 320px;
    color: white; 
    font-family: "Press Start 2P", system-ui;
    font-size: 17px; 
    
    white-space: nowrap;
    overflow: hidden;
    animation: 
      typing 2s,
      cursor .4s step-end infinite alternate; 
  }
  
  @keyframes cursor {
    50% { border-color: transparent } 
  }
  
  @keyframes typing {
    from { width: 0 }
  }
    
  .body {
  background-image: url('greenBackg.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%; 
  font-family: Verdana; 
  
  }
  
    .topnav {
      background-color: white;
      overflow: hidden;
      text-align: center;
    }
  
    .topnav a { 
      display: inline-block;
      margin: 0 30px;
      color: pink;
      padding: 10px 16px; 
      text-decoration: none; 
      font-size: 17px; 
      border: 6px solid transparent; 
      transition: border-color 0.3s ease;
    }
    
    .topnav a:hover {
      color: black;
      border-color: lightgreen; 
    }
  
    .topnav a:active {
      background-color: white;
      color: pink; 
    }
    
    .titleContainer {
      position: relative; 
      width: 100%;
      height: 300px;    
    }
  
    .title {
      position: absolute;
      top: 50px;
      left: 100px; 
      color: white; 
    
    }
    