@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,600;1,200;1,300;1,600&display=swap');


*{
	margin: 0;
	padding: 0;
	font-family: 'Bai Jamjuree', sans-serif;
}
.hero{
	width: 100%;
	height: 100vh;
	background: linear-gradient(#101010, #525252);
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}

.logo{
	width: 150px;
	cursor: pointer;
}

.navbar{
	width: 85%;
	height: 15%;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

button{
	color: #fbfcfd;
	padding: 10px 25px;
	background: transparent;
	border: 1px solid #fff;
	border-radius: 5px;
	outline: none;
	cursor: pointer;
}

.content{
	color: #fbfcfd;
	position: absolute;
	top: 50%;
	left: 8%;
	transform: translateY(-50%);
	z-index: 2;	
}

h1{
	font-family: 'Bai Jamjuree';
	font-size: 80px;
	margin: 10px 0 30px;
	line-height: 80px;
}

.side-bar{
	width: 50px;
	height: 100vh;
	background: linear-gradient(#525252, #ababab);
	position: absolute;
	right: 0;
	top: 0;
}

.menu{
	display: block;
	width: 25px;
	margin: 40px auto 0;
	cursor: pointer;
}

.social-links img, .useful-links img{
	width: 25px;
	margin: 5px auto;
	cursor: pointer;
}

.social-links{
	width: 50px;
	text-align: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.useful-links{
	width: 50px;
	text-align: center;
	position: absolute;
	bottom: 30px;
}
p{
	width: 50%;
}

.bubbles img{
	width: 25px;
	animation: bubble 3s linear infinite;
	animation-direction: reverse;
}

.bubbles1 img{
	width: 25px;
	animation: bubble 2s linear infinite;
	animation-direction: reverse;
}

.bubbles2 img{
	width: 25px;
	animation: bubble 2.5s linear infinite;
	animation-direction: reverse;
}

.bubbles{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	position: absolute;
	top: -70px;
}

.bubbles1{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	position: absolute;
	top: -70px;
}

.bubbles2{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	position: absolute;
	top: -70px;
}

@keyframes bubble{
	100%{
		transform: translateY(0);
		opacity: 0;
	}
	70%{
		opacity: 1;
	}
	50%{
		opacity: 1;
	}
	0%{
		transform: translateY(80vh);
		opacity: 0;
	}
}

.bubbles img:nth-child(1){
	animation-delay: 2s;
	width: 25px;
}
.bubbles img:nth-child(2){
	animation-delay: 1s;
	width: 20px;	
}
.bubbles img:nth-child(3){
	animation-delay: 3s;
	width: 25px;
}
.bubbles img:nth-child(4){
	animation-delay: 4.5s;
	width: 18px;
}
.bubbles img:nth-child(5){
	animation-delay: 3.5s;
	width: 25px;
}
.bubbles img:nth-child(6){
	animation-delay: 6.2s;
	width: 20px;
}
.bubbles img:nth-child(7){
	animation-delay: 7s;
	width: 15px;
}
.bubbles1 img:nth-child(1){
	animation-delay: 7s;
	width: 25px;
}
.bubbles1 img:nth-child(2){
	animation-delay: 6.2s;
	width: 16px;
}
.bubbles1 img:nth-child(3){
	animation-delay: 3.5s;
	width: 25px;
}
.bubbles1 img:nth-child(4){
	animation-delay: 4.5s;
	width: 13px;
}
.bubbles1 img:nth-child(5){
	animation-delay: 3s;
	width: 16px;
}
.bubbles1 img:nth-child(6){
	animation-delay: 1s;
	width: 18px;
}
.bubbles1 img:nth-child(7){
	animation-delay: 2s;
	width: 10px;
}
.bubbles1 img:nth-child(8){
	animation-delay: 2.5s;
	width: 15px;
}
.bubbles2 img:nth-child(1){
	animation-delay: 2s;
	width: 20px;
}
.bubbles2 img:nth-child(2){
	animation-delay: 3.5s;
	width: 25px;
}
.bubbles2 img:nth-child(3){
	animation-delay: 4.5s;
	width: 16px;
}
.bubbles2 img:nth-child(4){
	animation-delay: 6s;
	width: 12px;
}
.bubbles2 img:nth-child(5){
	animation-delay: 1s;
	width: 20px;
}
.bubbles2 img:nth-child(6){
	animation-delay: 3s;
	width: 25px;
}
.bubbles2 img:nth-child(7){
	animation-delay: 4.5s;
	width: 17px;
}
.bubbles2 img:nth-child(8){
	animation-delay: 3.5s;
	width: 25px;
}
.bubbles2 img:nth-child(9){
	animation-delay: 3s;
	width: 20px;
}

/* Dropdown Button */
.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #3e8e41;}

.hover-effect {
  width: 100px;
  height: 100px;
  background: transparent;
  border-color: white;
  transition: width 2s;
}

.hover-effect:hover {
	width: 300px;
}

th, td {
	padding: 7.5px;
}