<!DOCTYPE html>
<html>
<head>
<title>XRent</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Play:wght@400;700&family=Roboto&display=swap" rel="stylesheet">
<style>
            * {
                box-sizing: border-box;
            }
            body, html {
                height: 100%;
                margin: 0;
            }
            .splash {
                position: relative;
                padding: 15px;
                background-image: url(images/splash.jpg);
                height: 100%;
                background-position: center;
                background-repeat: no-repeat;
                background-size: cover;
            }
            .text-overlay {
                width: 95%;
                max-width: 916px;
                padding: 50px 65px;
                background-color: #000;
                text-align: center;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }
            .text-overlay h2,
            .text-overlay h3 {
                font-family: 'Play', sans-serif;
                font-size: 36px;
                font-weight: 700;
                line-height: 42px;
                margin: 0;
            }
            .text-overlay h2 {
                color: #DF1A21;
                margin-bottom: 20px;
            }
            .text-overlay h3 {
                color: #FECC00;
                margin-bottom: 10px;
            }
            .text-overlay p {
                font-family: 'Roboto', sans-serif;
                font-size: 30px;
                line-height: 48px;
                color: #fff;
                margin: 0;
            }
            @media screen and (min-width: 1600px) {
                .text-overlay {
                    margin-top: 90px;
                }
            }
            @media screen and (max-width: 768px) {
                .text-overlay {
                    padding: 30px;
                }
                .text-overlay h2, .text-overlay h3 {
                    font-size: 30px;
                    line-height: 38px;
                }
                .text-overlay p {
                    font-size: 24px;
                    line-height: 42px;
                }
            }
            @media screen and (max-width: 480px) {
                .text-overlay h2, .text-overlay h3 {
                    font-size: 28px;
                    line-height: 36px;
                }
                .text-overlay p {
                    font-size: 18px;
                    line-height: 32px;
                }
            }
        </style>
</head>
<body>
<div class="splash">
<div class="text-overlay">
<h2>New Site Launching Check Back before the end of the week! We are getting it ready.</h2>
<h3>New Site Benefits</h3>
<p>Same great pricing, same great selections</p>
<p>Updated look with new features every month</p>
<p>Updated wishlist sorting and more</p>
<p>100s of new titles added each week</p>
</div>
</div>
</body>
</html>