

/*Header*/
header{
text-align: center;
font-size: 2em;
font-family: Verdana}

body {
  background-color: #1a1212;
  color: #ff8eff;
  font-size: 16px;}

/*Grid*/
.container {
  display: grid;
  grid-template-columns: 33% 33% 33%;
  column-gap: 10px;
  row-gap: 10px;
  background-color: #1a1212;
  border: 1px solid;
  padding: 10px;
  }

.container div{
    border: 1px solid;
    font-size: 16px;
}

.support {
    grid-column: 1 / span 3;
}

h1 {
  text-align: center;
  font-size: 0.9em;
  font-family: 'Courier New', Courier, monospace;
  }

h2 {
  text-align: center;
  font-size: 1.25em;
  font-family: 'Courier New', Courier, monospace;
  }


  
/*Absatz*/
p {
 text-align: center;
 font-size: 1em;
 font-family: 'Courier New', Courier, monospace;
}


/*Listendesign*/
ul{
  list-style-position: outside;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1em;
  text-align: left;}

ol{
    list-style-position: inside;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1em;
    text-align: left;
}

/*links*/
a:link{
  color: #0effff;
  font-weight: bold}
a:visited{
  color: #0effff;
  font-weight: bold}
a:hover{
  color: #08ff4e;
  font-weight: bold}

