* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
}

/*Scrollbar*/
div::-webkit-scrollbar {
  width: 0.5vw;
}
/*Track*/
div::-webkit-scrollbar-track {
  border-radius: 10px;
}
/*Handle*/
div::-webkit-scrollbar-thumb {
  background-image: linear-gradient(120deg, #f6ebff, #aaa8ae, #f6ebff);
  border-radius: 30px;
}

#aboutBackg, #rhizBackg {
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
}

.menuwindow {
  -webkit-user-select: none;
  display: none;
  background-color: rgba(255, 254, 254, 0.8);
  position: absolute;
  z-index:10;
  width: 80%;
  height: 40vw;
  left: 7%;
  margin-top: 8%;
  border-radius: 20px;  
}

.scrolPar{
  -webkit-user-select: none;  
  position: absolute;
  max-width: 90%;
  height: 90%;
  margin: 2%;
  overflow: visible;
  justify-items: center;
  overflow-y: scroll;
}

#title {
  margin-left: 5%;
  top: 1.8vw;
  overflow: visible;
  width: 170px;
  white-space: nowrap;
  text-align: left;
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: bold;
  font-size: 1.3vw;
  color: rgba(0, 0, 0, 1);
}
#paragraph {
  /*paragraph*/
  margin: 8% 5%;  
  overflow: visible;
  text-align: left;
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: normal;
  font-size: 1.2vw;
  color: rgba(0, 0, 0, 1); 
}
#paragraph img{
  float: left;
  margin-left: -1%;
  margin-right: 1%;
  padding-top: 0%;
  width: 30%;
  
}


#thelink {
  overflow: visible;
  width: 75px;
  white-space: nowrap;
  text-align: left;
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: bold;
  font-size: 1.2vw;
  color: rgba(0, 0, 0, 1);
  transition: all 0.3s ease-in;   
}


#thelink a:link {
  /*link style*/
  text-decoration: none;
  color: rgba(0, 0, 0, 1); 
}
#thelink a:visited, #paragraph a:visited  {
  text-decoration: none;
  color: rgba(0, 0, 0, 1);
}
#thelink a:hover  {
  color: #f07338;
}

#x {
  position: relative;
  margin: auto;
  left: 46%;
  top: 1.8vw;
  width: 2%;
  height: 5%;
  cursor: pointer;
}
@media screen and (max-width:700px){  
  #x {
    width: 3%;  
    margin-top: -3%;  
  }     
}

.left {
  /*left side of x*/
  height: 6%;
  width: 100%;
  top: 40%;
  position: absolute;
  background-color: rgba(0, 0, 0, 1);
  border-radius: 2px;
  transform: rotate(45deg);
  transition: all 0.3s ease-in;
}
.right {
  /*right side of x*/
  height: 6%;
  width: 100%;
  top: 40%;
  position: absolute;
  background-color: rgba(0, 0, 0, 1);
  border-radius: 2px;
  transform: rotate(-45deg);
  transition: all 0.3s ease-in;
}

#x:hover .left {
  transform: rotate(-45deg);
  background-color: #f07338;
}
#x:hover .right {
  transform: rotate(45deg);
  background-color: #f07338;
}

@media screen and (max-width: 700px) {
  .menuwindow {
    z-index: 100;
  }
  #title {
    top: 4vw;
  }
  #paragraph {
    margin: 10% 5%;
    font-size: 1.5vw;
    
  }
  #thelink a{  
    font-size: 1.5vw;   
  }

  #x {
    top: 4vw;
  }
}
