body {
  background-color: #0B0B0C;
  opacity: 1;
  background-image:  linear-gradient(#0d2324 1.4000000000000001px, transparent 1.4000000000000001px), linear-gradient(to right, #0d2324 1.4000000000000001px, #0B0B0C 1.4000000000000001px);
  background-size: 32px 32px;
  font-size: 16px;
  color:white;
  font-family: firasans;
  text-align:justify;
  max-width: 2560px;
  margin-left: auto;
  margin-right: auto;
}

/*-- Headliner --*/

h1{
  color:white;
  font-size:50px;
  font-weight:normal;
  text-align:center;
  font-family:pixantiqua;
  margin:5px;
}

h2 {
  color:white;
  font-size:25px;
  font-weight:normal;
  margin: 20px 0px 10px 0;
  font-family:pixantiqua;
}

h3{
  color:white;
  font-size:18px;
  font-weight:normal;
  font-family:pixantiqua;
  margin-bottom: 1px;
}

/*-- Font --*/
@font-face {
  font-family: firasans;
  src: url(fonts/FiraSans.ttf);
}

@font-face {
  font-family: pixantiqua;
  src: url(fonts/PixAntiqua.ttf);
}
  

/*-- Links --*/
a:link {
  color: lightskyblue;
  text-decoration:none;
}

a:visited {
  color: lightskyblue;
  text-decoration:none;
}

a:hover {
  color: lightskyblue;
  text-decoration: none;
}

a:active {
  color: lightskyblue;
  text-decoration:none;
}

/*-- Header --*/
.header{
    margin-top:10px;
    margin-bottom:10px;
    display: flex;
    justify-content: center;
}

/*-- Navigation --*/
.nav{
  display: flex;
  flex-direction:column;
  gap:10px;
}

.nav a{
    color: lightskyblue;
    text-decoration: none;
}

.nav a:hover{
  color: lightskyblue;
  text-decoration:none;
}

/*-- Flex --*/
.flex{
  display: flex;
  justify-content: center;
  column-gap:20px;
}

/*-- Left --*/
.left{
  width:300px;
  background-color:#1A1A1E;
  padding:30px;
  border-radius:10px;
  order: 1;
}

.webrings{
  margin-top:20px;
  text-align:center;
}

/*-- Main --*/
.main{
  width: 800px;
  background-color:#1A1A1E;
  padding: 30px;
  line-height:2;
  border-radius:10px;
  order:2;
}

/*-- Button --*/

.button{
    font-family: firasans;
    color: white;
    width: 200px;
    height: 50px;
    margin: 5px;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    text-shadow: 0px 0px 8px black;
}


.piczel{
    background: linear-gradient(90deg, rgba(230, 135, 135, 1) 0%, rgba(255, 242, 145, 1) 52%, rgba(90, 204, 230, 1) 100%);
}

.picarto{
  background: #48BF91;
}

.twitch{
  background: #8956FB;
}

.youtube{
  background: red;
}

.button:hover{
    cursor:pointer;
}


/*-- Mobile --*/
  @media only screen and (max-width: 800px) {
    .flex {
        flex-direction: column;
    }
    .left{
        max-width: unset;
    }
}

@media only screen and (max-width: 500px){
      .flex{max-width: 100%;
      height:auto;
}
}


/*-- Gripper --*/
.gripper{
    display:flex;
    justify-content:center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding:2px;
}