okey de alguna forma lo logre con este codigo:
@charset "utf-8";
/*Tres reglas de oro
http://boozox.net/web/trucos-para-hacer-disenos-en-css-mas-rapido-y…*{ padding:0; margin:0;}
body{ font-size:100%; text-align:center}
img{ border-width:0;}
/*Saca cuadrito a los links*/
a{ outline-style:none;}
/*class para dejar links negros y sin subrayado*/
.linksinformato{ color:black;text-decoration:none;}
/*ubicacion y sombra para cuadros buscar, publicar y mas*/
#buscar{ position:absolute; left:1%; top:2%; bottom:2%; width:25%; padding:17% 8%; text-align:center; font-family:Verdana, Geneva, sans-serif; color:#FFAD5C; border:thin solid #70aaf0; box-shadow:0 0 30px #70aaf0; -webkit-box-shadow:0 0 30px #70aaf0; -moz-box-shadow:0 0 30px #70aaf0; text-shadow:#FFAD5C 0 -1px 1px;}
#publicar{ position:absolute; right:1%; top:2%; bottom:2%; width:25%; text-align:center; padding:17% 8%; font-family:Verdana, Geneva, sans-serif; color:#FFAD5C; border:thin solid #86db20; box-shadow:0 0 30px #86db20; -webkit-box-shadow:0 0 30px #86db20; -moz-box-shadow:0 0 30px #86db20; text-shadow:#FFAD5C 0 -1px 1px;}
#menuprincipal{ position:absolute; bottom:2%; right:47%; box-shadow:0 0 30px #F00; -webkit-box-shadow:0 0 30px #F00; -moz-box-shadow:0 0 30px #F00;}
/*efecto de fondo gradiente para ie chrome y firefox*/
#buscar:hover{ background: -moz-linear-gradient(top, white, #70aaf0); background: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#70aaf0)); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='white', endColorstr='#70aaf0');}
#publicar:hover{ background: -moz-linear-gradient(top, white, #86db20); background: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#86db20)); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='white', endColorstr='#86db20');}
#menuprincipal:hover{ background: -moz-linear-gradient(top, white, #F00); background: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#F00)); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='white', endColorstr='#F00');}
/*Define color y fuente para el título*/
#tituloquiero{ font-family:Verdana, Geneva, sans-serif; font-size:250%;text-align:center}
#quiero1{ color:#70aaf0; text-shadow: -1px -1px -1px rgba(10,10,10,.3);}
#quiero2{ color:#86db20;}
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>QuieroQuiero.com</title>
<link href="estilos.css" rel="stylesheet" type="text/css">
</head>
<body>
<header id="tituloquiero">
<span id="quiero1">Quiero</span><br><span id="quiero2">Quiero</span>
</header>
<div>
<a class="linksinformato" href="#"><h1 id="buscar">Buscar</h1></a>
<a class="linksinformato" href="#"><h1 id="publicar">Publicar</h1></a>
</div>
<img id="menuprincipal" src="imagenes/ico-menu-1.png" alt="menu principal" width="64" height="64">
</body>
</html>