/* General Body Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #444;
  background-color: #444444;
}

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

/* Header Styling */
header {
  display: flex;
  justify-content: space-between;
  background-color: #333;
  padding: 10px 0;
  position: relative;
  align-items: center;
}

.site-title h1 {
  color: #fff;
  margin: 0;
  font-size: 24px;
  padding: 10px;
}

.nav_list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: right;
  z-index: 1;
}

.nav_list li {
  display: inline;
  margin: 0 15px;
}

.nav_list a {
  color: #888;
  text-decoration: none;
  font-size: 18px;
  position: relative;
  cursor: pointer;
}

nav a:hover {
  color : #fff;
}

nav a::after{
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
  transform: scaleX(0);
}

nav a:hover::after{
  transform: scaleX(1);
}

/* Main Content Styling */
.main-content {
  width: fit-content;
  height: min-content;
  margin: auto;
  padding: 12px;
  background-color: rgba(46, 53, 71, 0.3);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1, h2 {
  font-size: 30px;
  color: #fff;
  text-align: center;
}

p {
  font-size: 18px;
  color: #888;
}

/* Image container styling */
.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px; /* Adds space above the image */
}

/* Center the image */
.image-container img {
  max-width: 100%;
  height: auto;
}

/* Button Container Styling */

.button-container{
  display: flex;
  width: 100%;
  height: 500px;
  margin-top: 20px;
}

/* Button Styling */

.button{
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #6A89A7;
  color: white;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  transition: transform .3s ease;

}

.button img{
  width: 100%;
  height: 100%;
}

.button span{
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
}

.button:hover span{
  opacity: 1;
  transform: translateY(0px);
}

/* Button Animation */
.button:hover{
  background-color: #28a745;
  transform: translateY(-12px);
  border-radius: 1%;
  transition: transform .5s ease, border-radius .5s ease;
  z-index: 2;
}

/* Footer Styling */
footer {
  text-align: center;
  padding: 10px;
  background-color: #333;
  color: white;
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 3;
}

