<!DOCTYPE html>
<html>
<head>
<title>Carolumni High School Reunion</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="hero-image">
<div class="overlay"></div>
<div class="header-text">
<h1>Carolumni High School Reunion</h1>
<p>Join us for a night of celebration and reminiscing</p>
<a href="#details" class="btn-primary">Learn More</a>
</div>
</div>
</header>
<main>
<section id="details">
<div class="container">
<h2>Event Details</h2>
<div class="card">
<h3>When</h3>
<p>Saturday, June 15th, 2023 at 7:00pm</p>
</div>
<div class="card">
<h3>Where</h3>
<p>Carolumni High School<br>123 Main Street<br>Osnabrück, Germany</p>
</div>
<div class="card">
<h3>Dress Code</h3>
<p>Semi-formal attire</p>
</div>
<div class="card">
<h3>Cost</h3>
<p>Admission is free, but donations are appreciated</p>
</div>
</div>
</section>
<section id="register">
<div class="container">
<h2>Register</h2>
<form action="#" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="phone">Phone:</label>
<input type="tel" id="phone" name="phone">
<button type="submit" class="btn-primary">Register Now</button>
</form>
</div>
</section>
</main>
<footer>
<div class="container">
<div class="social">
<a href="#"><i class="fab fa-facebook-square"></i></a>
<a href="#"><i class="fab fa-twitter-square"></i></a>
<a href="#"><i class="fab fa-instagram-square"></i></a>
</div>
<form action="#" method="post">
<h3>Subscribe to our Newsletter</h3>
<label for="email-newsletter">Email:</label>
<input type="email" id="email-newsletter" name="email" required>
<button type="submit" class="btn-secondary">Subscribe</button>
</form>
</div>
</footer>
</body>
</html>