@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Lobster", cursive;
}
.videobox{
    width: 100%;
    height: 100%;
}
.videobox video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header {
  background-color: gray;
  height: 100vh;
}
.logo {
  width: 150px;
  height: 75px;
}
.container {
  padding: 0 100px;
  height: 100%;
}
.container::before{
    content: "";
    position:absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    backdrop-filter: blur(10px);
}
.navbar {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px 100px;
  display: flex;
  justify-content: space-between;
}
.list {
  display: flex;
  justify-content: space-between;
  width: 400px;
  list-style-type: none;
  font-size: 25px;
  color: #fff;

}
.link {
  cursor: pointer;
  transition: 0.3s;
}
.link:hover{
    transform: scale(1.5);
    color:#4FBFE7
}
.texts{
    position:absolute;
    top: 200px;
    width: 40%;
    height: 86%;
}
.title {
    font-size: 48px;
    color: #FFFFFF;
    margin-bottom: 25px;
}
  
.paragraph {
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    height: 54px;
    width: 140px;
    border-radius: 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    color: #FFFFFF;
    transition: all 0.4s ease-out;
}

.btn:hover {
    background-color: #4FBFE7;
    color: #000;
}