I need you to help adjust, there must be some mistake to get so big ... I need this top-of-page notification. Without interfering with the other texts. In case I want the notification to be much smaller and at the top as shown in the image below
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>haxP v2</title>
<link rel="shortcut icon" href="./favicon.png">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script><linkhref='https://fonts.googleapis.com/css?family=Pacifico'rel='stylesheet'type='text/css'><body><scripttype="text/javascript">
$("").ready(function() {
$("div.success").fadeIn(300).delay(1500).fadeOut(400);
});
</script>
<style type="text/css">
.alert-box {
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
}
.success {
color: #3c763d;
background-color: #dff0d8;
border-color: #d6e9c6;
display: none;
}
</style>
<div class="alert-box success">Successful Alert !!!</div>
<body bgcolor="#3CB371" />
<center>
<style>
body {
left: 0;
line-height: 200px;
margin: auto;
margin-top: -100px;
position: absolute;
top: 50%;
width: 100%;
color: #ffffff;
font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
font-size: 56px;
}
#frase {
left: 0;
line-height: 200px;
margin: auto;
margin-top: -100px;
position: absolute;
top: 65%;
width: 87%;
;
font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
font-size: 8px;
}
#rodape {
left: 0;
line-height: 200px;
margin: fixed;
margin-top: 0px;
position: absolute;
bottom: 0;
top: 110%;
width: 100%;
;
font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
font-size: 10px;
}
</style>
</head>
<body>
<div id="texto">
<font face="Pacifico">Welcome Underground</font>
</div>
<div id="frase">
Cada sonho que você deixa pra trás, é um pedaço do seu futuro que deixa de existir.
</div>
<div id="rodape">
Powered by <b><font face="Pacifico" size="2">Cruz</font></b>
</div>
</body>
</html>
</center>