*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

body{
    font-family:'Poppins', sans-serif;
    background:#e78a63;
    color:#333;
}

.container{
    max-width:900px;
    margin:auto;
    padding:30px 20px;
}

/* Logo */

.logo{
    text-align:center;
}

.logo img{
    max-width:320px;
    width:100%;
}

.image img {
    max-width: 500px;
    width:100%;
}

/* Hero */

.hero{
    text-align:center;
    margin-bottom:10px;
}

.hero h1{
    font-size:38px;
    font-weight:600;
    margin-bottom:10px;
}

.hero p{
    font-size:20px;
    opacity:0.85;
}

/* Video / Image */

.media{
    margin:40px 0;
    display:flex;
    justify-content:center;
}

.media video,
.media img{
    width:100%;
    max-width:600px;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* CTA */

.cta{
    text-align:center;
    margin-top:20px;
    margin-bottom: 40px;
}

.cta a{
    display:inline-block;
    background:#222;
    color:white;
    padding:16px 32px;
    border-radius:40px;
    text-decoration:none;
    font-size:18px;
    transition:0.2s;
}

.cta a:hover{
    background:#000;
    transform:translateY(-2px);
}

/* Footer */

.footer{
    text-align:center;
    margin-top:50px;
    font-size:14px;
    opacity:0.7;
}

/* Responsive */

@media (max-width:600px){

.hero h1{
    font-size:28px;
}

.hero p{
    font-size:18px;
}

.container{
    padding:25px 16px;
}

}