﻿html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
    background-color: rgb(00, 00, 00);
    color: rgb(130, 89, 68);
    font-family: 'Courier New', Courier, monospace;
}
.active {
color: rgb(85, 85, 85);}


a:link {
    color: rgb(182, 85, 150);
    background-color: transparent;
    text-decoration: none;
  } 

  a:visited {
    color: rgb(182, 85, 150);
    background-color: transparent;
    text-decoration: none;
  }

  a:hover {
    color: pink;
    background-color: transparent;
    text-decoration: wavy underline;
    
  }

   .button {
      display:flex;
      
       justify-content: top;
    align-items: left;
  
 }

 .txt {

  display: grid;
  grid-template-columns: repeat(auto, minmax(auto));
  max-width: 800px;
  
  grid-auto-flow: dense;
}

 }

  #links
 {color: rgb(182, 85, 150);}  


 
  
 

#container {
    padding:3rem;
}






