*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

.hero{
    min-height: 100vh;
    width: 100%;
    background-color: #000;
    background-image: url(https://i.pinimg.com/originals/5e/2f/fd/5e2ffd110409974e88e35fb676c4126e.gif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
    color: #fff;
    padding: 0 8%;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
.logo{
    width: 240px;
}
.hero button{
    background: #393939;
    border: 0;
    outline: none;
    padding: 15px 35px;
    color: #fff;
    margin-top: 25px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
}
.hero h3{
    text-align: center;
    padding: 10px;
    font-weight: 800;
    font-size: 70px;   
}