<html><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">

    <title>Orange</title>

    <link rel="icon" href="favicon.ico" type="image/png">

    <style>
/* Typography */

html {
	font-family: "Roboto", sans-serif;
}

/* Custom Styles */

main {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	justify-content: center;
	padding: 0 30px;
	text-align: center;
}

main > .intro {
	font-family: sans-serif;
	font-weight: 600;
  font-size: 6vw;
}

main > .tagline {
	font-size: 2vw;
	margin: 1.5rem 0;
	font-weight: 100;
}</style>
<style>
/* Minimal CSS Reset */

html {
  box-sizing: border-box;
  font-size: 12px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}
</style>
<style>
main,
.main {
  /* change the colors as needed */
  background: #F78C08;
  color: #FAFAFA;
}
</style>
</head>

<body>
    <main>
        <div class="intro">Welcome to the Server</div>
        <div class="tagline">You are visiting Server <code>Orange</code></div>
    </main>


</body></html>