@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
    font-family:  "poppins",sans-serif ;
    margin: 0;
    padding: 0;

}
body{
    background:radial-gradient(#915b11,#0b0b0b);

    height: 100vh;
}


.logo img{
    padding: 10px;
    width: 100px;
    animation: x 1s ease 1;
    background-attachment: fixed;
}

@keyframes x{
    0%{
        opacity: 0;
        translate: 0 -100px;
    }
}


.text{
    color: #fff;
    font-size: 24px;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    animation: y 1.7s ease 1;
     margin-bottom: 100px;
}

.text h1 span{
    color: #d99c47;
}

@keyframes y {
    0%{
        opacity: 0;
    }
    
}

video{
    animation: z 1.5s ease 1;
        box-shadow: 1px 1px 50px black;

}

@keyframes x{
    0%{
        opacity: 0;
        translate: 0 -100px;
    }
}

@keyframes z{
    0%{
        opacity: 0;
        translate: 0 200px;
    }
}


   video{
    width: 800px;
    margin: auto;
    display: flex;
    align-items: center;
   
  
   }
   
   @media (max-width:740px){
    
    body{
    background:radial-gradient(#915b11,#0b0b0b);

    }
    
    video{
        width:370px;
        margin: auto;
    display: flex;
    align-items: center;
   
    }
    
    .text{
        font-size:15px;
        margin-bottom:50px;
    }
    
    .logo img{
      display: flex;
      margin: auto;
        padding:5px;
        width:80px;
    }
   
 
}
