<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <link rel="preconnect" href="https://fonts.gstatic.com">
    <link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,700;1,400&display=swap" rel="stylesheet">

    <title>Irishhealth.com is offline</title>

    <style>
        body{
            font-family: 'Montserrat', arial, sans-serif;
            color: #fff;
            margin: 0;
            padding: 0;
            background: url("ih-bg.jpg") no-repeat center center fixed; 
            -webkit-background-size: cover;
            -moz-background-size: cover;
            -o-background-size: cover;
            background-size: cover;
        }
        .container-1{
            height: 50vh;
            padding: 20px 0;
            box-sizing: border-box;
        }

        .container-2{
            background-color: #fff;
            height: 50vh;
            padding: 20px 0;
            box-sizing: border-box;
        }

        section{
            display: flex;
            align-items: center;
            justify-content: center;
        }

        section div{
            max-width: 80%;
        }

        .ih{
            padding: 20px 40px;
            max-width: 240px;
        }

        .ihp{
            padding: 20px 40px;
            max-width: 300px;
        }

        h2{
            font-size: 28px;
            padding: 0;
            margin: 0;
        }

        p{
            font-weight: 300;
            font-size: 20px;
            line-height: 1.6em;
        }

        button{
            border: none;
            padding: 10px 20px;
            background-color: #fff;
            color: #34404e;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
        }

        button:hover{
            background-color: #eee;
        }

        img{
            max-width: 80%;
        }

        @media screen and (max-width: 500px) {
            .container-2{
                display: block;
                padding: 15% 0;
            }

            .ih{
                max-width: none;
                width: 190px;
                margin: 0 auto;
                display: block;
            }

            .ihp{
                max-width: none;
                width: 230px;
                margin: 0 auto;
                display: block;
            }

            p{
                font-size: 14px;
            }
        }
    </style>
</head>
<body>
    <section class="container-1">
        <div>
            <h2>Dear Visitor,</h2>
            <p><strong>Irishhealth.com</strong> is offline for the foreseeable future to undergo a full review. If you are a healthcare professional, please visit <strong>Irishhealthpro.com</strong> for news, clinical updates and the latest in medical research.</p>
            <a href="http://Irishhealthpro.com"><button>Visit Irish Health Pro</button></a>
        </div>
    </section>
    <section class="container-2">
            <img class="ih" src="ih.png" alt="">
            <a href="http://Irishhealthpro.com"><img class="ihp" src="ihp.png" alt=""></a>
    </section>
</body>
</html>