    body { /*Website background colour.*/
    background-color:#420057;
    background-image: url('https://64.media.tumblr.com/010c46067b29b710ce9a508fb4171dfb/tumblr_inline_n1ubnjJXdz1qmvw6b.gif');
    background-repeat: repeat;
    }
    
    h1 { /*Headers*/
    color: #ffb4fe; 
    font-family: Strawberry Muffins;
    }
    
    p { /*Paragraphs*/
    color: #ffb4fe; 
    font-family: Verdana;
    }
    
    i { /*Italics*/
    color: #d98dff; 
    font-family: Verdana;
    }
    
    a { /*links*/
    color: #93faff; 
    font-family: Verdana;
    }
    
    a:hover { /*links when mouse is hovered over them*/
    color: #fa00ff; 
    font-family: Verdana;
    }
    
    .sidenav { /*Sidebar customisation*/
    width: 200;
    position:absolute;
    padding: 10px 10px;
    text-align: left;
    font-size: 13px;
    background-image: radial-gradient(#c000b0, #97008b);
    border-radius: 15px; /* Rounded corners!!! */
    border-style: ridge;
    border-color: #ff00f4;
    }
    
    .main { /*main text for the index page*/
    width: auto;
    margin-left: 250;
    padding: 10px 10px;
    background-image: radial-gradient(#c000b0, #97008b);
    border-radius: 15px; /* Rounded corners!!! */
    border-style: ridge;
    border-color: #ff00f4;
    font-size: 13px
    }
    
    .infobox { /*wiki page infobox*/
    width: fit-content;
    padding: 10px 10px;
    text-align: left;
    font-size: 13px;
    background-image: radial-gradient(#370053, #210032);
    border-radius: 15px; /* Rounded corners!!! */
    border-style: ridge;
    border-color: #8000c0;
    }
    
    .wikimain { /*main text for wiki page*/
    width: fit-content;
    padding: 10px 10px;
    background-image: radial-gradient(#370053, #210032);
    border-radius: 15px; /* Rounded corners!!! */
    border-style: ridge;
    border-color: #8000c0;
    font-size: 13px
    }
    
    .siteheader { /*siteheader*/
    text-align: center;
    background-image: radial-gradient(#c000b0, #97008b);
    border-radius: 15px; /* Rounded corners!!! */
    border-style: ridge;
    border-color: #ff00f4;
    margin-bottom: 20px;
    }
    
    .contentwarning { /*content warning box*/
    text-align: center;
    background-image: radial-gradient(#c40500, #8a0400);
    border-radius: 15px; /* Rounded corners!!! */
    border-style: ridge;
    border-color: #5d0300;
    margin-bottom: 20px;
    }
    
    .contentwarning h1 { /*makes the content warning text white*/
    color:#e2fffe; 
    }
    
    .grid-container { /*lets the wiki maintext and bio be side by side*/
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 20px;
    }
    
    .grid-container-triple { /*THREE elements side by side!*/
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 20px;
    }
  
    .grid-container-super { /*Five elements side by side.*/
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  grid-gap: 20px;
    }
  
    .websitewidth { /*Overall website width*/
  max-width: 1200px;
  margin: auto;
  /*background-image: linear-gradient(#8500a7, #340063);*/
    }