CINXE.COM

The JUNO Awards

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>The JUNO Awards</title> <style> body, html { margin: 0; padding: 0; width: 100vw; height: 100vh; overflow: hidden; display: flex; align-items: flex-end; justify-content: center; position: relative; font-family: Arial, sans-serif; color: white; text-align: center; } .landscape, .portrait { display: none; object-fit: cover; width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: -1; } @media (min-aspect-ratio: 1) { .landscape { display: block; } .overlay-text { font-size: 1.5rem; } } @media (max-aspect-ratio: 1) { .portrait { display: block; } } .overlay-text { position: absolute; z-index: 1; padding: 20px; background: rgba(0, 0, 0, 0.75); } </style> </head> <body> <img src="JUNOS_orders closed_Society Awards_1920x1080.jpg" alt="Landscape Image" class="landscape"> <img src="JUNOS_orders closed_Society Awards_1080x1920.jpg" alt="Portrait Image" class="portrait"> <div class="overlay-text"> <p>Statuette orders will reopen in March 2025.</p> <p>For inquiries please email <a href="mailto:submissions@junoawards.ca" style="color: #ffdd57; text-decoration: underline;">submissions@junoawards.ca</a></p> <p>Thank you!</p> </div> </body> </html>