*{
    margin: 12;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}       

body{
    background: #3b4229;
    color: #191d0e;
    place-items: center;
    min-height: 100vh;
}

h1{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 70px;
    padding: 20px;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #191d0e;
}

video{
    display: block;
    margin: 20px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

p{
    text-align: center;
    font-size: 1.2em;
    margin: 60px;
    padding: 10px;
    color: #191d0e;
    line-height: 1.6;
    width: 80%;
}

nav{
    grid-template-columns: 1fr 1fr;
    margin: 50px;
}

a{
   background: #2d331d;
   color: #3b4229;
   font-size: 40px;
   border-radius: 5px;
   width: 40px;
   padding: 10px 10px;
   text-decoration: none;
   transition: all 0.3s ease-in-out;
}

a:hover{
   font-size: 45px;
   background: #3b4229;
   color: #191d0e;
   box-shadow: #191d0e 0px 7px 15px;

}

