body{
margin:0;
font-family:Roboto, sans-serif;
background:#289470;
color:#101112;
}

header{
background:white;
padding:20px;
text-align:center;
}

nav{
margin-top:10px;
}

nav a{
margin:0 10px;
text-decoration:none;
color:#288094;
font-weight:600;
font-family:Poppins;
}

nav a:hover{
text-decoration:underline;
}

main{
max-width:900px;
margin:auto;
padding:20px;
}

h1,h2,h3{
font-family:Poppins;
}

.hero{
display:flex;
flex-wrap:wrap;
align-items:center;
gap:20px;
}

.hero img{
width:260px;
height:auto;
border-radius:10px;
object-fit:cover;
}

.facts ul{
list-style:none;
padding:0;
}

.cards{
display:flex;
flex-wrap:wrap;
gap:20px;
margin-top:20px;
}

.card{
background:white;
padding:20px;
flex:1;
text-decoration:none;
color:black;
border-radius:6px;
}

.hobbygrid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}

.hobbycard{
background:white;
padding:20px;
border-radius:6px;
}

.button{
display:inline-block;
margin-top:10px;
padding:10px 15px;
background:#288094;
color:white;
text-decoration:none;
border-radius:4px;
}

footer{
text-align:center;
background:#288094;
color:white;
padding:15px;
margin-top:40px;
}