CSS

/* General reset and font settings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
/*   background: url("https://www.eetimes.eu/wp-content/uploads/2023/02/Ericsson_Headquarters.jpg") */
    no-repeat center center fixed;
  background-size: cover; /* Ensure the image covers the entire background */
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

/* Container styling */
.container {
  background: rgba(
    255,
    255,
    255,
    0.9
  ); /* White background with slight transparency */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 600px;
}

/* Heading styling */
.container h1 {
  font-size: 33px;
  color: #004b87; /* Ericsson blue color */
  margin-bottom: 20px;
}

/* Dropdown container styling */
.dropdown-container {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 20px 0;
}

/* Dropdown styling */
select {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ddd;
  outline: none;
  flex: 1;
  font-size: 16px;
  color: #333;
}

/* Button styling */
button {
  padding: 12px;
  border-radius: 5px;
  border: none;
  background-color: #004b87; /* Ericsson blue color */
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #003366; /* Darker blue for hover effect */
}

/* Title styling */
#title {
  margin-top: 20px;
  font-size: 18px;
  color: #333;
}

/* Styling for the background video */
.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  /* width: auto;
  height: auto; */
  z-index: -1;
  transform: translate(-50%, -50%);
  background: no-repeat;
  background-size: cover;
}
