*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #423029;
    color: #19110d;
    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: #19110d;
}

video{
    display: block;
    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: #19110d;
    line-height: 1.6;
    width: 80%;
}

nav{
    grid-template-columns: 1fr;
}

a{
   background: #886658;
   color: #423029;
   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: #886658;
   color: #19110d;
   box-shadow: #211510 0px 7px 15px;

}
