*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:white;
color:#222;
}

/* Topbar */
.topbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
}

.topbar nav a{
margin-left:30px;
text-decoration:none;
color:#333;
font-weight:500;
transition:0.3s;
}

.topbar nav a:hover{
color:black;
}

/* Hero */
.hero{
display:flex;
justify-content:space-between;
align-items:center;
height:90vh;
padding:0 60px;
overflow:hidden;
}

.content{
max-width:500px;
animation:fadeUp 1s ease;
}

.content h1{
font-size:60px;
font-weight:800;
}

.content h3{
font-weight:300;
margin:10px 0 20px;
}

.content p{
color:#555;
margin-bottom:20px;
}

.btn{
display:inline-block;
padding:12px 25px;
background:black;
color:white;
text-decoration:none;
margin-bottom:20px;
transition:0.3s;
}

.btn:hover{
background:#444;
}

/* Image */
.image{
position:relative;
height:100%;
display:flex;
align-items:flex-end;
}

.image img{
height:100%;
object-fit:cover;
filter:grayscale(100%);
transform:translateX(80px);
}

/* Animation */
@keyframes fadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* Responsive */
@media(max-width:768px){
.hero{
flex-direction:column;
text-align:center;
}

.image img{
height:300px;
transform:none;
}
}
