/* CSS Document */
*{
  font-family: "Heebo";
  --primary-color:white;
  --light-primary-color: #f7f7f7; /*light:#f7f7f7 dark:#363636*/
  --secondary-color:#1d1d1d; /*#1d1d1d*/
  --highlight-color:#fcba03;
  color:var(--secondary-color);
}

.title{
  font-size: 9em;
  font-weight: 600;
  position: absolute;
  opacity:0.1;
  margin: 10px;
  width: 100%;
  margin: 10px;
  padding: 0;
  line-height: 1em;
  z-index: 0;
}

h1{
  font-size:4em;
  font-weight: bolder;
  line-height: 1em;
  margin: 0;
}

h2{
  font-size:3.5em;
  font-weight: bold;
  line-height: 1em;
  margin: 0;
}

h3{
  font-size:2.9em;
  font-weight:normal;
  line-height: 1em;
  margin: 0;
}

h4{
  font-size:2em;
  font-weight:normal;
  line-height: 1em;
  margin: 0;
}

p{
  font-size:1.5em;
  line-height: 1.5em;
  margin: 0;
}

header{
    position: fixed;
    height: 100vh;
    width: 60px;
    background-color: var(--primary-color);
    border-right:inset;
    border-width: 3px;
    border-color: var(--secondary-color);
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 100;
    padding: 0;
    margin: 0;
}

header div{
    position: fixed;
    margin: 0;
    padding: 0;
    top:-1;
    left:-1;
    background-color: var(--primary-color);
    width: 61px;
    height:102%;
    background-size:fill;
    z-index: 102;
}

.navbar{
  width: 100%;
  height: 100%;
}

.navbar ul{
  position: absolute;
  width: 61px;
  height: 35vh;
  min-height: 280px;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  top: 50%;
  transform:translateY(-50%);
  z-index: 200;
}

.navbar ul li{
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  margin: auto;
  display: flex;
  align-items: center;
  font-size: 10;
}

.navbar ul li a{
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  display: flex;
  align-items: center;
  transition: 0.1;
}

.navbar ul li a svg{
  align-items: center;
}

.biggericon{
  width: 90%;
  height: 90%;
  margin: auto;
}

.smallericon{
  width: 80%;
  height: 80%;
  margin: auto;
}

.navbar ul li a path{
  fill: var(--secondary-color);
}

.navbar ul li a svg:hover{
  width: 100%;
  height: 100%;
}

.navbar ul li a:hover path{
  animation: fillcolorswitch 3s linear infinite;
}

.navbar ul li .clue{
  visibility: hidden;
  color: var(--secondary-color);
  background-color: var(--primary-color);
  border-right: solid 3px var(--secondary-color);
  border-top: solid 3px var(--secondary-color);
  border-bottom: solid 3px var(--secondary-color);
  padding: 5px;
  border-radius: 5px;
  margin-left: 8px;
  font-weight: bold;
  font-size: 1em;
}

.navbar ul li .clue:hover{
  visibility: visible;
}

.navbar ul li:hover .clue{
  visibility: visible;
}

.bubble{
  position: absolute;
  height: 30px;
  width: 30px;
  border: solid;
  border-width: 3px;
  border-radius: 10%;
  border-color: var(--secondary-color);
  background-color: var(--primary-color);
  margin-left: 30px;
  transform: rotate(45deg);
  z-index: 101;
  transition: 0.2s;
}

.bubble-mobile{
  visibility: hidden;
}

.opencontact{
  cursor: pointer;
}

body{
  background-color: var(--primary-color);
  position: absolute;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body::-webkit-scrollbar{
  width: 8px;
}

body::-webkit-scrollbar-track{
  background: var(--primary-color);
}

body::-webkit-scrollbar-thumb{
  background: var(--highlight-color);
  border-radius: 5px;
  margin:auto;
}


.fullcontainer{
    font: Heebo;
    margin-left: 63px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100vw;
}

#footer{
  margin-top: 20px;
  min-height: 150px;
  animation: backgroundcolorswitch 10s linear infinite;
  display: flex;
}

#footer div p{
  font-size: 1em;
  font-weight: bold;
  color: white;
  text-align: center;
  margin: 5px;
}

#footer div{
  display: block;
  margin: auto;
}

#downloadfix{
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 15px 0 0 15px;
  border: solid 3px var(--secondary-color);
  border-right: none;
  min-width: 280px;
  max-width: 280px;
  position: fixed;
  z-index: 200;
  right: -220px;
  top:50%;
  transform: translateY(-50%);
  animation: backgroundcolorswitch 6s linear infinite;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: 0.5s;
}

#downloadfix div{
  display: block;
  height: 30px;
  width: 30px;
  margin: auto;
  margin-left: 15px;
  margin-right: 15px;
  transition: 0.5s;
}

#downloadfix p{
 font-size: 1em;
 line-height: 0.5em;
 font-weight: bold;
 color: white;
 padding-right: 15px;
 margin: auto;
}

#downloadfix:hover{
  right: 0;
}

#logohome{
  min-width: 130px;
  max-width: 130px;
  min-height: 50px;
  max-height: 50px;
  position: fixed;
  z-index: 200;
  right: 5px;
  top:10px;
  transition: 0.5s;
}

#logohome div{
  display: block;
  height: 95%;
  width: 95%;
  margin: auto;
  transition: 0.5s;
}

.outlink{
  text-decoration-style:solid;
  animation: decorationcolorswitch 3s linear infinite;
}

.outlink:hover{
  animation: none;
  text-decoration: none;
  animation: textcolorswitch 3s linear infinite;
}

.textcolorswitch{
  transition: 0.5s;
  animation: textcolorswitch 3s linear infinite;
}

.bordercolorswitch{
  transition: 0.5s;
  animation: bordercolorswitch 3s linear infinite;
}

.bordercolorswitch:hover{
  transition: 0.5s;
  animation: backgroundcolorswitch 3s linear infinite;
}

.fillcolorswitch{
  animation: fillcolorswitch 3s linear infinite;
}

@keyframes fillcolorswitch {
    0%{
      fill: #fcce03;
    }
    50%{
      fill: #fc03db;
    }
    100%{
      fill: #fcce03;
    }
}


@keyframes textcolorswitch {
    0%{
      color: #fcce03;
    }
    50%{
      color: #fc03db;
    }
    100%{
      color:#fcce03;
    }
}

@keyframes bordercolorswitch {
    0%{
      border-color: #fcce03;
    }
    50%{
      border-color: #fc03db;
    }
    100%{
      border-color:#fcce03;
    }
}

@keyframes backgroundcolorswitch {
    0%{
      background-color: #fcce03;
    }
    50%{
      background-color: #fc03db;
    }
    100%{
      background-color: #fcce03;
    }
}

@keyframes decorationcolorswitch {
    0%{
      text-decoration-color: #fcce03;
    }
    50%{
      text-decoration-color: #fc03db;
    }
    100%{
      text-decoration-color: #fcce03;
    }
}
