html {
  height: 100%;
  overflow: auto;
  font-family: "Roboto Mono", monospace;
}

body {
  height: 100%;
  background-color: rgb(2, 25, 49);
}

footer {
  padding: 10px 20px;
  color: white;
}

ul {
  list-style-type: none;
  margin: -5px;
  overflow: hidden;
  background-color: rgb(2, 25, 49);
}

li {
  font-size: x-large;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover {
  background-color: rgba(43, 255, 0, 0.418);
  border-radius: 8px;
  color: white;
}

.current-tab {
  color: rgb(35, 173, 11);
  font-weight: bolder;
}

.main-container {
  height: 1000px;
  width: auto;
  margin-top: 0px;
}

.main-title {
  text-align: center;
  color: white;
  padding-top: 10px;
  font-size: 4vw;
  margin-bottom: 0px;
}

.main-text {
  background-color: rgba(5, 5, 5, 0.507);
  color: white;
  padding: 1% 0.5% 1% 0.5%;
  width: 900px;
  max-height: 40vw;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  font-size: 1.6vw;
}

.main-content {
  text-align: center;
  font-size: 1.5vw;
  color: white;
  margin-top: 0vw;
  margin-bottom: 0;
}

.name {
  float: left;
  margin-left: -25px;
}

.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0px;
}

.nav {
  float: right;
}

.greeting {
  text-align: center;
  color: white;
  padding-top: 2.2vw;
  font-size: 5vw;
  padding-bottom: 0px;
  padding-right: 0px;
}

.filterDiv {
  float: left;
  background-color: rgb(29, 104, 15);
  color: white;
  text-align: center;
  margin-left: 8px;
  margin-right: 8px;
  margin-top: 15px;
  display: none;
  padding: 10px;
  border-radius: 15px;
}

.about {
  font-size: 1.47vw;
  padding-bottom: 25px;
  padding-left: 20px;
  padding-right: 20px;
}

.awards {
  width: 46%;
  font-size: 35%;
}

.awards-long {
  width: 46%;
  font-size: 28%;
}

.award-container {
  width: 1100px;
  max-height: 50vw;
}

.projects {
  width: 46%;
  font-size: 1vw;
  height: 3vw;
  color: white;
}

.project-link {
  color: rgb(0, 10, 99);
  font-weight: 900;
}

.team {
  background-color: rgba(255, 255, 255, 0.116);
  border-color: rgba(43, 255, 0, 0.418);
  color: white;
  border-radius: 10px;
  padding: 15px 32px;
}

.team:hover {
  background-color: rgb(24, 141, 0);
  border-color: rgba(255, 255, 255, 0.116);
}

.team span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  margin-bottom: 50px;
  width: 90%;
  text-align: center;
  text-decoration: none;
  font-size: larger;
  font-family: "Roboto Mono", monospace;
  font-weight: bolder;
}

.team span:after {
  content: "\00bb";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.team:hover span {
  padding-right: 25px;
}

.team:hover span:after {
  opacity: 1;
  right: 0;
}

.contact {
  margin-left: 20px;
  font-size: 2.6vw;
}

.contact-link {
  color: white;
}

.show {
  display: block;
}

.container {
  margin-top: 10px;
  margin-bottom: 10px;
  overflow: auto;
}

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

.btn {
  border: none;
  outline: none;
  padding: 12px 16px;
  background-color: #687681;
  color: white;
  cursor: pointer;
  border-radius: 15px;
  font-size: 0.6vw;
  font-family: "Roboto Mono", monospace;
}

.btn:hover {
  background-color: #ddd;
  color: black;
  border-radius: 5px 5px 5px 5px;
}

.btn.active {
  background-color: #666;
  color: white;
}

.btn.active.btn:hover {
  background-color: rgb(29, 104, 15);
}

.text-gold {
  color: gold;
}

.index_1 {
  animation: index1;
  font-size: 4.5vw;
  font-weight: bold;
}

.index_2 {
  animation: index2;
  font-size: 4vw;
  font-weight: bold;
}

.index_1,
.index_2 {
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  animation-duration: 10s;
  animation-timing-function: steps(25, end);
  animation-iteration-count: infinite;
}

.index_1::after,
.index_2::after {
  content: "█";
  position: absolute;
  right: 0;
  animation: caret infinite;
  animation-duration: 1s;
  animation-timing-function: steps(1, end);
}

@keyframes index1 {
  0%,
  50%,
  100% {
    width: 0;
  }
  10%,
  40% {
    width: 73vw;
  }
}

@keyframes index2 {
  0%,
  50%,
  100% {
    width: 0;
  }

  60%,
  90% {
    width: 86vw;
  }
}

/* width */
::-webkit-scrollbar {
  width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(35, 173, 11); 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(35, 173, 11);
}