
Ethan Au

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vancouver Aquarium | Home</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<style>
.dragon {
background-image: url("dragons.png");
background-size: cover;
background-position: 50% 25%;
height: min(calc(100vw / 1440 * 576), 60vh);
position: relative;
}
.dragon h1 {
position: absolute;
bottom: 0;
left: 0;
right: 0;
margin: 0;
padding: 1.5em var(--main-hor-margin) 20px;
color: white;
font-size: 3em;
background-image: linear-gradient(transparent, black);
}
.buy-button {
display: inline-block;
padding: 20px;
color: white;
border-radius: 10px;
background-color: var(--primary);
text-decoration: none;
align-self: center;
}
.waterbg { position: relative }
.waterbg:before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: -100px;
z-index: -1;
background-image:
linear-gradient(to top, white, transparent 150px),
url("water.png");
background-size: cover;
}
.review-grid {
display: grid;
--gap: 15px;
gap: var(--gap);
justify-content: center;
grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 1400px) {
.review-grid {
grid-template-columns: repeat(3, 400px);
}
}
.review-grid > div {
display: flex;
flex-direction: column;
gap: var(--gap);
}
.review {
padding: 15px;
border-radius: 10px;
backdrop-filter: blur(3px) brightness(120%);
text-align: center;
}
.review .quote {
font-size: 1.5em;
margin-bottom: 5px;
}
</style>
</head>
<body>
<header>
<nav class="navbar">
<img src="logo.png" alt="Vancouver Aquarium" class="logo">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="tickets.html">Tickets</a></li>
<li><a href="exhibits.html">Exhibits</a></li>
</ul>
</nav>
</header>
<main>
<div class="section dragon">
<h1>New Exhibit: Dragons. Visit Today!</h1>
</div>
<div class="section column-2">
<div class="flex-col">
<h1>Visit the Aquarium!</h1>
<div class="flex-col" style="font-size: 1.2em">
Discover a sea of knowledge in Canada's largest aquarium!
Located in the heart of Stanley Park, the Vancouver Aquarium features
over 65,000 amazing animals, including but not limited to:
<ol>
<li>Sea Otters</li>
<li>Sea Lions</li>
<li>Sloths</li>
<li>Axolotls</li>
</ol>
<a href="exhibits.html">Learn more about our various exhibits here!</a>
<br>
<a class="buy-button" href="tickets.html">Buy Tickets</a>
</div>
</div>
<div>
<img class="responsive-img" style="border-radius: 15px;" src="seal.png" alt="Seal">
</div>
</div>
<div class="section waterbg">
<h1 style="color: white">Sea What our Guests Think!</h1>
<div class="review-grid">
<div>
<div class="review">
<div class="quote">"Must see in Vancouver. Definitely try to take some time to watch the sea lion training. It's really worth it!"</div>
<div class="author">Google Review, 202</div>
</div>
<div class="review">
<div class="quote">"Lost in the depths of the ocean's embrace 🌊✨ Today, I immersed myself in the enchanting world of sea life at Vancouver Aquarium."</div>
<div class="author">Instagram Review, 2024</div>
</div>
</div>
<div>
<div class="review">
<div class="quote">"Can't recommend it enough! An amazing experience and should definitely be on your list of things to check out if you ever find yourself in the Vancouver area."</div>
<div class="author">Google Review, 2025</div>
</div>
<div class="review">
<div class="quote">"It was a lot of fun! I got to <i>sea</i> all kinds of animals like seals"</div>
<div class="author">Aquarium Guest, 2015</div>
</div>
</div>
<div>
<div class="review">
<div class="quote">"I went as a kid, and I finally got to take my kids. We all loved it! I loved seeing it through the eyes of my kids. So much excitement! The staff we talked to were super knowledgeable and friendly!"</div>
<div class="author">Guest Review, 2024</div>
</div>
<div class="review">
<div class="quote">"Sharing a moment like this with my daughter is priceless."</div>
<div class="author">Instagram Review, 2024</div>
</div>
</div>
</div>
</div>
<div class="section column-2" style="gap: 30px">
<div>
<img class="responsive-img" style="border-radius: 15px;" src="app.png" alt="App">
</div>
<div class="flex-col">
<h1>Download our App!</h1>
Explore more with our official mobile app!
Discover real-time showtimes, fishy facts about aquarium residents, and an interactive map!
<br>
<br>
Available on the Apple App Store and Google Play.
</div>
</div>
</main>
<footer class="column-3">
<div class="flex-col">
<strong class="heading">Pages</strong>
<a href="index.html">Home</a>
<a href="tickets.html">Tickets</a>
<a href="exhibits.html">Exhibits</a>
</div>
<div class="flex-col">
<strong class="heading">Address</strong>
<div>845 Avison Way</div>
<div>Vancouver, BC, V6G 3E2</div>
<div>778-655-9554</div>
</div>
<div class="flex-col" style="font-size: 0.8em;">
In 2017, the Ocean Wise Conservation Association (Ocean Wise)
was created as a new global non-profit ocean conservation
organization focused on protecting and restoring our world’s oceans.
In the spring of 2021, after an incredibly difficult year due to
COVID-19, Ocean Wise transferred ownership of the Aquarium to a new
operator, Herschend Enterprises. Ocean Wise will continue as an
independent charitable non-profit. Its important work will continue
to be supported by the Vancouver Aquarium through a commitment by
Herschend to make an annual donation of 1% of gross profits towards
Ocean Wise’s conservation and education programs.
</div>
</footer>
</body>
</html>

