@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-image: url('wallpaper.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow-x: hidden;
}

header {
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 80px;
    backdrop-filter: blur(5px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    flex: 1;
}

.logo {
    height: 60px;
}

nav {
    flex: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 48px;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    padding-left: 0%;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #333;
    transition: width 0.3s ease;
}

nav ul li a:hover::before {
    width: 100%;
}

.search-container {
    display: flex;
    align-items: center;
}

.search-container input[type="text"] {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-button {
    background-color: #fff;
    border: none;
    cursor: pointer;
    padding: 5px;
    font-size: 16px;
    margin-left: 5px;
    color: #333;
}

.hero {
    text-align: center;
    color: #fff;
    margin-top: 50px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    animation: text-animation 3s ease-in-out infinite;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.video-container {
    width: 600px;
    height: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.test-button-container {
    display: flex;
    align-items: center;
}

.test-button {
    background-color: #BEEFF0;
    color: #000;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2em;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.test-button:hover {
    background-color: #81d4fa;
    transform: translateY(-5px);
}

.click-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    margin-top: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.click-button:hover {
    background-color: #45a049;
}

body::before {
    content: "";
    background-image: url('wallpaper.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(5px);
    z-index: -1;
    opacity: 0.8;
}

.image-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 20px;
}

.image-box {
  width: 32%;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.image-box:hover {
  transform: translateY(-5px);
}

.image-box img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.image-button {
  background-color: #BEEFF0;
  color: #000;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.2em;
  display: inline-block;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.image-button:hover {
  background-color: #81d4fa;
}

footer {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  text-align: center;
  backdrop-filter: blur(5px);
}

@keyframes text-animation {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}