Yo, I'm making an MOTD for a server for end-users to read. However, It looks so compressed for users with smaller monitors for example when the resolution is in 1280x1040 it's streched down. I'm not familiar with @media tags in CSS how am I going to make it so it looks better on smaller monitors?
Here is my code;
<DOCTYPE! html>
<html>
<head>
<title>MOTD</title>
<style type="text/css">
body {
margin: 0px;
padding: 0px;
background: rgba(169,3,41,1);
background: -moz-radial-gradient(center, ellipse cover, rgba(169,3,41,1) 0%, rgba(143,2,34,1) 44%, rgba(109,0,25,1) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(169,3,41,1)), color-stop(44%, rgba(143,2,34,1)), color-stop(100%, rgba(109,0,25,1)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(169,3,41,1) 0%, rgba(143,2,34,1) 44%, rgba(109,0,25,1) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(169,3,41,1) 0%, rgba(143,2,34,1) 44%, rgba(109,0,25,1) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(169,3,41,1) 0%, rgba(143,2,34,1) 44%, rgba(109,0,25,1) 100%);
background: radial-gradient(ellipse at center, rgba(169,3,41,1) 0%, rgba(143,2,34,1) 44%, rgba(109,0,25,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a90329', endColorstr='#6d0019', GradientType=1 );
}
#border {
background: #6d0019;
margin-right: 500px;
margin-left: 500px;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
-webkit-border-radius: 150px 150px 150px 150px;
border-radius: 150px 150px 150px 150px;
-webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}
li {
font-size: 25px;
font-family: Impact;
}
h1 {
font-size: 65px;
font-family: Impact;
}
p {
font-size: 25px;
font-family: Impact;
}
</style>
</head>
<body>
<br><br><br><br>
<div id="border">
<center>
<br>
<h1>Hello & Welcome :)</h3>
<p>
Yo. This is a simple Trouble In Terrorist Town that is still under development<br>
Do us a favor and have fun and don't be an ass ;)
</p>
<br>
</center>
</div>
<br><br>
<div id="border">
<center>
<br>
<h1>Rules:</h3>
<li>Offensive Language Not Tolerented</li>
<li>Sexism and Racism Result To Permenant Ban</li>
<li>Respect and Obey Our Staff</li>
<li>No RDM</li>
<li>No Greifing</li>
<br><br>
</center>
</div>
</body>
</html>