No meu projeto a borda do header do index.html está menor do que nas outras páginas html. O que posso fazer para consertar?
Esse é o código do index.html:
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<title>João da Silva - Desenvolvedor Web</title>
<link rel="shortcut icon" href="imagens/favicon.png">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/site.css">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Crimson+Text:400,400italic,600">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans+Condensed:700">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Shadows+Into+Light">
</head>
<body>
<header class="titulo-principal">
<img class="foto-home" src="imagens/eu.jpg" alt="Foto de João da Silva">
<h1>João da Silva</h1>
<p class="subtitulo-principal">Desenvolvedor web</p>
<ul class="palavras-home">
<li class="palavra-home eficiencia">Eficiência</li>
<li class="palavra-home boas-praticas">Boas práticas</li>
<li class="palavra-home codigo-limpo">Código limpo</li>
<li class="palavra-home css3">CSS3</li>
<li class="palavra-home html5">HTML5</li>
<li class="palavra-home javascript">JavaScript</li>
<li class="palavra-home acessibilidade">Acessibilidade</li>
<li class="palavra-home responsivo">Responsivo</li>
<li class="palavra-home otimizacoes">Otimizações</li>
<li class="palavra-home agilidade">Agilidade</li>
<li class="palavra-home design">Design</li>
</ul>
<a class="banner-twitter" href="http://twitter.com/joaodasilva">Siga-me no Twitter</a>
</header>
<main>
<section class="secao-inicio saudacao">
<p class="saudacao"><span class="saudacao-inicio">Olá,</span> meu nome é <strong>João da Silva</strong> <span class="saudacao-ultima-linha">e eu construo <em>sites maravilhosos</em></span></p>
<a class="botao-index" href="bio.html">Conheça mais um pouco sobre mim</a>
</section>
<section class="secao-inicio trabalhos">
<h2>Trabalhos</h2>
<ul>
<li><img src="imagens/bmw.png" alt="Site da BMW"></li>
<li><img src="imagens/ibm.png" alt="Site da IBM"></li>
<li><img src="imagens/uol.png" alt="Site da UOL"></li>
</ul>
<a class="botao-index" href="portfolio.html">Veja mais</a>
</section>
<section class="secao-inicio blog">
<h2>Blog</h2>
<small>Últimos posts</small>
<ol>
<li class="mais-recente">
<a href="blog.html">O essencial de design responsivo</a>
<p class="inicio-post">
Design responsivo tem ganho cada vez mais atenção como técnica de desenvolvimento de páginas web para dispositivos móveis. Mas como começar?
</p>
</li>
<li>
<a href="blog.html">Por que fazer páginas acessíveis?</a>
</li>
<li>
<a href="blog.html">JavaScript não obstrusivo</a>
</li>
</ol>
<a class="botao-index" href="blog.html">Veja mais</a>
</section>
</main>
<footer>
<h2>Vamos conversar?</h2>
<p>Você pode entrar em contato comigo <a href="contato.html">por e-mail</a> ou pelo telefone <a href="tel:+551234567890">(12) 3456-7890</a></p>
</footer>
</body>
</html>
E esse é o index.css:
.foto-home {
height: 200px;
border-radius: 50%;
}
.saudacao p {
font-size: 1.5em;
color: #99A;
line-height: 1;
padding: 2em;
}
.saudacao-inicio {
font-size: 3em;
color: #889;
}
.saudacao-ultima-linha {
text-align: right;
display: block;
}
.saudacao strong {
font-size: 2em;
color: #000;
}
.saudacao em {
color: #851944;
font-size: 4em;
-webkit-transform: rotate(-5deg) skew(-10deg);
transform: rotate(-5deg) skew(-10deg);
display: inline-block;
}
.botao-index {
font-size: 1.25em;
background-color: #851944;
color: #FFF;
padding: .5em;
border: .2em solid black;
width: 40ch;
margin: 2em auto;
display: block;
text-align: center;
}
.secao-inicio {
padding: 2em;
}
.secao-inicio h2 {
font-size: 3em;
text-transform: uppercase;
margin-bottom: .5em;
}
.trabalhos {
background-color: #3C1D3D;
border-top: .5em solid #000;
border-bottom: .5em solid #000;
}
.trabalhos h2 {
color: #FFF;
}
.trabalhos ul {
overflow: hidden;
border: .5em solid black;
}
.trabalhos li {
float: left;
width: 33.333%;
}
.trabalhos img {
width: 100%;
display: block;
}
.blog {
background-color: #999;
position: relative;
color: #FFF;
border-bottom: .5em solid #851944;
}
.blog small {
position: relative;
top: -2em;
}
.blog li {
width: 30%;
}
.blog li a {
color: #FCF;
padding: .5em;
display: block;
}
footer {
background-color: #000;
color: #FFF;
padding: 2em;
}
footer h2 {
font-size: 3em;
}
footer a {
color: #F99;
}
main {
width: 100%;
padding-bottom: 0;
float: none;
}
html,body {
overflow-x: hidden;
height: 100%;
}
body {
-webkit-perspective: 6px;
perspective: 6px;
-webkit-perspective-origin: 50% 160px;
perspective-origin: 50% 160px;
}
.palavras-home {
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
position: absolute;
bottom: 0;
right: 0;
top: 0;
left: 0;
}
.palavra-home {
font-family: "Shadows Into Light", cursive;
font-weight: bold;
font-size: 400%;
color: #D5447E;
position: absolute;
}
.eficiencia {
top: 50%;
left: 60%;
-webkit-transform: translate(-50%, -50%) translateZ(4px) rotate(-5deg) scale(.25);
transform: translate(-50%, -50%) translateZ(4px) rotate(-5deg) scale(.25);
}
.boas-praticas {
top: 70%;
left: 20%;
-webkit-transform: translate(-50%, -50%) translateZ(1px) rotate(10deg) scale(.25);
transform: translate(-50%, -50%) translateZ(1px) rotate(10deg) scale(.25);
}
.codigo-limpo {
top: 45%;
left: 25%;
-webkit-transform: translate(-50%, -50%) translateZ(2px) rotate(-10deg) scale(.25);
transform: translate(-50%, -50%) translateZ(2px) rotate(-10deg) scale(.25);
}
.css3 {
top: 55%;
left: 35%;
-webkit-transform: translate(-50%, -50%) translateZ(2px) rotate(5deg) scale(.25);
transform: translate(-50%, -50%) translateZ(2px) rotate(5deg) scale(.25);
}
.html5 {
top: 30%;
left: 65%;
-webkit-transform: translate(-50%, -50%) translateZ(2px) rotate(10deg) scale(.25);
transform: translate(-50%, -50%) translateZ(2px) rotate(10deg) scale(.25);
}
.javascript {
top: 15%;
left: 60%;
-webkit-transform: translate(-50%, -50%) translateZ(1px) rotate(-5deg) scale(.25);
transform: translate(-50%, -50%) translateZ(1px) rotate(-5deg) scale(.25);
}
.acessibilidade {
top: 30%;
left: 35%;
-webkit-transform: translate(-50%, -50%) translateZ(3px) rotate(-5deg) scale(.25);
transform: translate(-50%, -50%) translateZ(3px) rotate(-5deg) scale(.25);
}
.responsivo {
top: 40%;
left: 40%;
-webkit-transform: translate(-50%, -50%) translateZ(3px) rotate(10deg) scale(.25);
transform: translate(-50%, -50%) translateZ(3px) rotate(10deg) scale(.25);
}
.otimizacoes {
top: 70%;
left: 65%;
-webkit-transform: translate(-50%, -50%) translateZ(2px) rotate(-5deg) scale(.25);
transform: translate(-50%, -50%) translateZ(2px) rotate(-5deg) scale(.25);
}
.agilidade {
top: 75%;
left: 35%;
-webkit-transform: translate(-50%, -50%) translateZ(1px) rotate(5deg) scale(.25);
transform: translate(-50%, -50%) translateZ(1px) rotate(5deg) scale(.25);
}
.design {
top: 40%;
left: 60%;
-webkit-transform: translate(-50%, -50%) translateZ(2px) rotate(10deg) scale(.25);
transform: translate(-50%, -50%) translateZ(2px) rotate(10deg) scale(.25);
}
.titulo-principal {
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
position: relative;
}
.banner-twitter {
position: absolute;
top: 0;
right: 0;
line-height: 1;
/* largura = 14em */
/* altura = 3.5em */
/* tx = .707 * h - .707 * w + w */
/* ty = -.707 * h */
-webkit-transform: translate(6.5765em, -2.4745em) rotate(45deg);
transform: translate(6.5765em, -2.4745em) rotate(45deg);
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
width: 14em;
padding: 1em 0;
box-sizing: border-box;
text-align: center;
text-decoration: none;
background-color: #3C1D3D;
color: white;
border: .25em solid black;
font-size: 1.2em;
font-family: "Open Sans Condensed", sans-serif;
}
.blog .inicio-post {
position: absolute;
top: 4em;
height: 8em;
left: 30%;
right: 4em;
background-color: #F2FFFC;
color: #000;
padding: 1.5em;
}
.blog .mais-recente {
background-color: #F2FFFC;
}
.blog .mais-recente a {
color: #F26;
}
.secao-inicio h2 {
text-shadow: .1em .1em #000;
}
E o site.css:
html {
font-size: 16px;
}
body {
font-family: "Crimson Text", "Times New Roman", serif;
background-color: #F2FFFC;
font-size: 1.2em;
line-height: 1.5;
}
h1,h2,
.subtitulo-principal {
font-family: "Open Sans Condensed", "Arial", sans-serif;
}
h1 {
text-transform: uppercase;
font-size: 3em;
text-shadow: .1em .1em #000;
}
.titulo-principal {
text-align: center;
background-color: #851944;
color: #FFF;
padding: 1.25em;
border-bottom: 0.2em solid black;
}
.subtitulo-texto {
font-size: 1.5em;
clear: both;
}
main a {
color: #851944;
}
main p {
text-align: justify;
margin: 1em 0;
}
.navegacao-site {
text-align: center;
background-color: #3C1D3D;
color: #F2FFFC;
padding: 1em;
}
.navegacao-site a {
color: inherit;
font-family: "Open Sans Condensed", "Arial", sans-serif;
text-transform: lowercase;
}
.navegacao-site h1 {
font-size: 1.5em;
margin-bottom: 1.25em;
}
.rodape-pagina {
background-color: #000;
color: #F2FFFC;
padding: 1.25em;
clear: both;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
box-sizing: border-box;
}
.container {
width: 45em;
margin-left: auto;
margin-right: auto;
padding: 1.5em 0;
}
strong {
font-weight: bold;
}
em {
font-style: italic;
}
.icones-redes-sociais li {
display: inline-block;
}
.icones-redes-sociais a {
width: 40px;
height: 40px;
display: block;
text-indent: -99999px;
}
.github {
background-image: url(../imagens/github.png);
}
.twitter {
background-image: url(../imagens/twitter.png);
}
.linkedin {
background-image: url(../imagens/linkedin.png);
}
main {
width: 80%;
float: left;
padding-bottom: 4em;
}
.minha-foto,
.navegacao-site {
border-left: 0.5em solid black;
border-bottom: 0.5em solid black;
box-sizing: border-box;
}
.navegacao-site {
width: 20%;
float: right;
position: relative;
top: 18.75em;
}
.minha-foto {
position: absolute;
top: 0;
right: 0;
height: 18.75em;
}