*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root{
  /* --text: #d9f7e8; */
  --text: #e7f3ed;
  --background: #020805;
  --background-transparent: hsla(150, 60%, 2%, 0.685);
  --primary: #32d282;
  --secondary: #092a1a;
  --accent: #2ed180;
}

html {
  scroll-behavior: smooth;
  /* overflow: hidden; */
}

a{
  text-decoration: none;
}

a,p,h1,h2,h3,h4,h5,h6{
  color: var(--text);
  font-family: Helvetica, Arial;
}

body::-webkit-scrollbar{
  display: none;
}
body{
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.header{
  background-color:var(--background);
  width: 100%;
  height: 5vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  position: sticky;
  top: 0;
}

.header-logo{
  display: flex;
  flex-direction: row;
}
.header-logo > img{
  width: 50px;
}
.header-logo > h1{
  font-size: 1.5rem;
  margin-top: 10px;
  color: var(--text);
  font-weight: bold;
}
.header .header-links{
  width: 20%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 0 1rem;
  margin: 0 20%;
  font-weight: bold;
}

.header .header-links li{
  margin-left: 1em;
}

#header-right{
  display: flex;
  flex-direction: row;
}
#header-weather{
  margin-right: 1rem;
}

ul{
  list-style: none;;
}

.header a{
  color: var(--text);
}

.header a:hover{
  color: #fff;
}

.hero{
  width: 100%;
  height: 95vh;
  /* background-image: url('assets/images/tgbbg.mp4'); */
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#hero-bg-video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  /* bottom: 0; */
  z-index: -1;
}

.hero-text-wrapper{
  background-color: var(--background-transparent);
  padding: 15vh 2vw;
  margin-left: 10%;
}

.hero-text-wrapper > h1{
  font-size: 4rem;
  /* color: transparent; */
  /* -webkit-text-stroke: 1px var(--text); */
  font-style: italic;
}


#video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.section-wrapper{
  /* background-color: #07101A; */
  /* background-image: url('assets/images/tgb2.png'); */
  background-size: cover;
  background-position: center;
  /* background-attachment: fixed; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1;
  width: 100%;
  height: 100vh;
}

.section-body{
  background-color: var(--background-transparent);
  padding: 2rem;
  display: flex;
  flex-direction: row;
  max-width: 60%;
}

.section-table-area{
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-table-area > h3{
  margin-bottom: 1rem;
}

.section-info-area{
  padding: 1rem;
  /* margin: 2rem; */
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
  align-self: center;
}

.tgb-text{
  color: var(--text);
  text-shadow: 0 0 5px var(--accent);
  /* font-weight: bold; */
}

/* if screen size is smaller than  1024 px*/
@media (max-width: 1024px) {
  .header {
    height: 10vh;
  }
  .header .header-links {
    width: 50%;
    margin: 0 10%;
  }
  .hero {
    height: 80vh;
  }
  .hero-text-wrapper > h1 {
    font-size: 2.5rem;
  }
  .section-body {
    flex-direction: column;
    max-width: 90%;
  }
  .section-table-area {
    width: 100%;
  }
}

@media (max-width: 700px) {
  #header-right {
    display: none;
  }
  .header-logo h1 {
    display: none;
  }
}

@media (max-width: 460px) {
  .header{
    display: none;
  }

  .hero-text-wrapper{
    margin: 0;
    width: 100%;
  }
}