```html
body {
margin: 0;
padding: 0;
backgroundimage: url('https://example.com/outdoor_fishing_background.jpg');
backgroundsize: cover;
backgroundposition: center;
height: 100vh;
display: flex;
justifycontent: center;
alignitems: center;
color: fff;
fontfamily: Arial, sansserif;
textalign: center;
}
h1 {
fontsize: 3rem;
marginbottom: 1rem;
}
p {
fontsize: 1.5rem;
marginbottom: 2rem;
}
a {
color: fff;
textdecoration: none;
fontweight: bold;
padding: 0.5rem 1rem;
backgroundcolor: rgba(0, 0, 0, 0.5);
borderradius: 5px;
transition: backgroundcolor 0.3s ease;
}
a:hover {
backgroundcolor: rgba(0, 0, 0, 0.7);
}