/*Homepage title*/
  h1{
  color: rgb()
  }
    
    
  .sub-header{
  border: 2px dashed darkblue;
  padding:20px; /*Add empty space around text*/
  margin: 20px; /*Add empty space around whole page*/    
  } 
  
  
/*Content*/

  /*Text*/
  body{
    
  /*Color*/
  background-color: #a3c3f7;
  color: white; /*Add color to Text*/
  
  /*font*/
  font-family:"Bokor", system-ui;
  font-weight: 500;
  font-style:normal;
  font-size:50pt;
  
  /*Layout*/
  margin:40px;
  padding:40px;
  }



  /*Web-rings*/
  
  a{ 
  color:red;    
    
  }
    
  a:hover{
  color:white;
  }
  
  .webring-title{
  width: 50%;
  margin: auto;
  padding: 20px;
    
  }
    
  .webring-container{
  display: flex;
  justify-content: space-around;    
  }
  
  .webring-container > a {
  padding: 20px;
  border: 2px solid #006d72;
  border-radius: 10px;  
  } 
