/*Main*/

* {
  box-sizing: border-box;
}

@@font-face {
  font-family: Rubik;
  src: url(../media/fonts/Rubik-VariableFont_wght.ttf)
}

a{
  text-decoration: none;
  color: #01e222;
}
a:hover{
  text-decoration: underline;
  color: #aafeb6;
}

body{
    background-color: #111111;
    margin: 0;
    color: #DDDDDD;
    background-image: url('../media/img/someonebg.gif');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#buttonmain{
  border: 1px solid white;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  background-color: black;
}

#anim {
    background: rgba(1, 1, 1, 1);
    opacity: 0;

    animation: fadeIn 3s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

#anim2 {
    background: rgba(1, 1, 1, 0.3);
    opacity: 0;

    animation: fadeIn 3s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
}

#anim3 {
    background: rgba(1, 1, 1, 0.3);
    opacity: 0;

    animation: fadeIn 3s;
    animation-delay: 3s;
    animation-fill-mode: forwards;
}
#anim4 {
    background: rgba(1, 1, 1, 0.3);
    opacity: 0;

    animation: fadeIn 3s;
    animation-delay: 4s;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.header {
  width: 100%;
  background-color: black;
  color: #ffffff;
  padding: 0;
  margin: 0;
  text-align: center;
}

.header img {
  width: 15%;
  object-fit: cover;
}

/* Navbar */

.nav {
  width: 100%;
  overflow: hidden;
  background-color: #333333;
  display: flex;
  justify-content: left;
  color: black;

}

.nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  max-width: 100%;
}

.nav li{
  display: inline;
  width:auto;
  border-right: 1px solid white;

}

.nav li:first-child{
  margin-left: 100px;
}

.nav li:last-child{
  border: none;
}


.nav a:hover {
  background-color: #01d220;
}

.nav a {
  display: block;
  color: black;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}

.nav a.right {
  float: right;
}


.container {
  background-color: #111111;
  float: left;
}

.qoutecontainer {

  background-color: #353c5e;
  padding: 5px 10px;
  text-align: justify-all;
}

.qoutecontainer p{
  color: #adadaf;
}


.container h1{
  padding-left: 40px;
  text-decoration: underline #653152;
  font-size: 50px;
}

.container p{


}

.textcontainer{
  width: 70%;
  padding-left: 40px;
  padding-right: 30px;
  font-size: 20;
}


.row::after {
  content: "|";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 15px;
}

/* Infobox */

.infobox{

  width: 300px;
  margin-right: auto;
  margin-left: auto;
  border: none;
  float: right;
  background-color: #EEEEEE;
}

.infoimg{
  margin: 0;
  padding: 0;
  border: none;
  height: auto;
  box-sizing: content-box;
}

.infoimg img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.back{

    position: fixed;
    bottom: 5rem;
    right: 4rem;
    background-color: #333;
    color: #fff;
    text-align:center;
    padding:10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);

}

.back p{

  font-size: 5rem;
  padding: 0;
  margin: 0;

}

.back a:hover{

  text-decoration:none
}



.infoitem{
  width: 290px;
  padding: 5px;
  box-sizing: content-box;
  font-size: 12px;
  background-color: #001803;
}

.infosep{
  width: 290px;
  padding: 5px;
  box-sizing: content-box;
  background-color:#007912;
  font-size: 16px;
  font-weight:bold;
}

.tablesep{
  font-size: 15px;
  font-weight:bold;
}

.infobox table{
  width: 100%;
  table-layout: fixed;
  border-collapse:collapse;

}

.infobox th{
  background-color:#000000;
  text-align: left;
  padding: 5px;
  font-size: 5x;
  font-weight: normal;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}

.infobox td{
  background-color: #222222;
  border-left: 1px solid #DDDDDD;
  font-size: 13px;
  font-weight:normal;
  border-top: 1px solid #DDDDDD;
  border-bottom: 2x solid #DDDDDD;
}

.infobox tr{

}

.infobox a{

    text-decoration:none;
}

.infobox a:hover{
  text-decoration: underline;
}

.seperator{
  background-color:#01a91a;
}

.infoflag {

    width:20px;
    height:13px;
    vertical-align: center;

}

.tableimg{
  padding: 0;

}



/* Tooltips */

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted white;
  vertical-align: center;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: auto;
  background-color: black;
  opacity: 0.8;
  color: #fff;
  vertical-align: center;
  text-align: center;
  padding: 1px 2px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  white-space: nowrap;
  border: 1px solid white;
  top: 140%;
  margin-left: -50%;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.collapsible {
  background-color: #007912;
  color: white;
  cursor: pointer;
  padding: 3px;
  width: 50%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 14px;
}



.content {
  padding: 10px;
  width: 50%;
  display: none;
  overflow: hidden;
  background-color: #000000;
  border: 1px solid #007912;
}

.content li{
  padding: 5px;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
