@font-face {
  font-family: 'SpaceGrotesk';
  src: url(/font/SpaceGrotesk-Bold-ttf);
}

body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  background: black;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
canvas {
  position: absolute;
  top:0;
  left:0;
  z-index: -1;
}

.text-box {
  font-size: 60px;
  font-family: 'SpaceGrotesk', sans-serif;
  letter-spacing: 7px;
  word-spacing: 12px;
  text-transform: uppercase;
  color:rgb(238, 238, 238);
  padding-bottom: 40px;
}

.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  flex-direction: row;
}

.button {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  padding: 15px;
  margin-left:20px;
  margin-right:20px;
  word-spacing: normal;
  
  letter-spacing: 5px;
  border: 1px solid white;
  background: black;
  cursor: pointer;

  color: white;
  transition: 0.5s;
  transform: scale(1.1);
}

.button:hover{
	background: white;
  color: black;
  transition: 0.5s;
  transform: scale(1.2);
}

.logo{
  width: 5px;
  height: 5px;
  border-radius: 50%;
  text-align: center;
  position:absolute;
  top: 20%;
  left: 50%;
}

.logo2{
  width: 5px;
  height: 5px;
  border-radius: 50%;
  text-align: center;
  position:absolute;
  top: 20%;
  left: 39%;
}

.container2 {
  text-align: center;
  background: #f5f5f5;
}

.header2 h6{
  padding-top: 250px;
  padding-bottom: 100px;
  color: rgb(255, 255, 255);
  font-size: 60px;
  text-align: center;
  font-family: 'Work Sans', sans-serif;
}

.sub-container {
  max-width: 1200px;
  margin: auto;
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.teams {
  margin: 10px;
  padding: 22px;
  max-width: 30%;
  cursor: pointer;
  transition: 0.4s;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 12px;
}
.teams name{
  color: #fff;
}

.teams:hover {
  background: #00B3FF;
  border-radius: 12px;
}
.teams:hover .name{
  color: #fff;
  transition: 0.5s;
}
.teams:hover .desig{
  color: #fff;
  transition: 0.5s;
}

.teams img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 500px;
  transition: 0.5s;
  max-width: 80%;
  max-height: 80%;
}
.teams img:hover{
  transform: translateY(-10px);
  transition: 0.5s;
}

.name {
  padding: 12px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  font-family: 'Work Sans', sans-serif;
}

.desig {
  color: rgb(0, 0, 0);
  text-align: center;
  font-family: 'Work Sans', sans-serif;
}