Как опустить ссылку на сайт в header-е ниже?
Учу html и css. Должен получиться такой header
У меня получается такой:
Вот css-код:
#header h1{
font-size: 28px;
letter-spacing: -1px;
padding: 20px, 0, 0, 20px;
color: #ff5500;
text-align: right;
text-align: center;
}
#header h1 a {
color: #fff;
text-decoration: none;
font-weight: 100;
letter-spacing: -2px;
text-align: right;
padding-left: 10px;
}
#header h1 a:hover {
color: #111;
}
Как можно опустить h1ниже?

