Как убрать подчеркивание у ссылки?
0
При оформлении логотипа как ссылки не убирает подчеркивание как в уроке?
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>СуперМозг</title>
<meta name="description" content="Хадыда-это смысл" />
<meta name="keywords" content="Хадыба, быба, тыда" />
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="main">
<div class="header">
<div class="logo">
<div class="logotext">
<h1><a href="/">СуперМозг</a></h1>
<h2>Смысла нету</h2>
</div>
</div>
<div class="БлокМеню">
<ul class="Меню">
<li class="Переключатели"><a href="#">Главная</a></li>
<li><a href="#">Ничего</a></li>
<li><a href="#">Пусто</a></li>
<li><a href="#">Капуста</a></li>
<li><a href="#">Огурец</a></li>
</ul>
</div>
</div>
<div class="Содержимое_Сайта">
</div>
</div>
</body>
</html>
style.css
a {
outline: none;
color: #31691b;
}
a:hover {
color: #aeb002;
}
.header {
background-color: lightgreen;
height: 200px;
font-size: 0.8em;
min-width: 900px;
}
.header, .main, .logo .БлокМеню {
margin-left: auto;
margin-right: auto;
}
.logo {
color: green;
width: 880px;
padding-bottom: 40px;
}
.logotext h1, .logotext h1 a .logotext h1 a:hover{
font: normal 330% 'century gothic', arial, sans-serif;
margin: 0 0 0 9px;
color: darkblue;
letter-spacing: 0.5em;
text-decoration: none;
}
.logotext h2 {
color: black;
font:normal 100% 'century gothic', alial;
padding: 5px 0 0 0;
margin: 0 0 0 9px;
}