@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

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

.main{
  width:100%;
  height:100vh;
  background-image: linear-gradient(rgba(26, 25, 25, 0.8),rgba(37, 34, 36, 0.199));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo{
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 16%;
  padding-top: 40px;
  width: 180px;
}
nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  margin-left: 121%;
  margin-bottom: 37%;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  transition: all 0.3s ease;
}
nav:hover{
  transform: scale(1.1);
  font-size: 20px;
}

nav .links{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4em;
  list-style-type: none;
}
.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.text {
  width: 45%;
  margin-top: 7%;
  margin-left: 15%;
  color: #fff;
  cursor: crosshair;
}
h1{
  color: yellow;
  font-size: 100px;
  font-family: 'Poppins', sans-serif;
}
p{
  font-size: 40px;
  font-family: 'Poppins', sans-serif;
}
h2{
  font-size: 30px;
  font-family: 'Poppins', sans-serif;
}
.image {
  width: 800px;
  text-align: right;
  margin-top: 10%;
  margin-right: 10%;
}
.image img {
  max-width: 100%;
  height: auto;
}
.social-icons {
  margin-top: 20px;
}
.social-icons a {
  margin-right: 10px;
}
  