* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #f5f5f7;
    color: #333333;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 960px;
    background: #ffffff;
    border-radius: 10px;
    padding: 50px 50px 20px 50px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    text-align: center;
}

h1 {
    font-size: 34px;
    color: #111827;
    margin-bottom: 18px;
    font-weight: 700;
}

p {
    font-size: 18px;
    color: #555555;
    line-height: 1.8;
}

.text, .text-links {
    margin-top: 18px;
}

.text-links {
    font-size: 16px;
}

.text-redirect {
    margin-top: 24px;
	 font-size: 15px;
}

.site {
    display: inline-block;
    margin: 28px 0;
    color: #2563eb;
    text-decoration: none;
    font-size: 30px;
    font-weight: 700;
}

.countdown {
    margin-top: 50px;
    font-size: 20px;
    color: #444444;
}

#seconds {
    font-size: 22px;
    font-weight: bold;
    color: #000000;
}

.link {
	font-weight: 600; 
	color: #2563eb;
}

.footer {
    margin-top: 140px;
    font-size: 12px;
    color: #888888;
}
.footer .domains {
    margin-top: 5px;
    font-size: 9px;
}
.footer .disclaimer {
    margin-top: 5px;
    font-size: 8px;
}


@media(max-width:768px) {

.container {
    padding: 40px 10px 40px 10px;
}

h1 {
    font-size: 26px;
}
.site {
    font-size: 22px;
}


}