Стили, заданные в main.css не влияют на html файл. Не могу понять почему.
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Title</title>
<link rel="stylesheet" href="/css/main.css">
</head>
<body>
<section class = 'personal'>
<h1>Main Title</h1>
<p><a class = 'c'></a>SomeTitle: text</p>
<p><a class = 'c'></a>SomeTitle: text</p>
</section>
</body>
</html>
.body {
background-color: antiquewhite;
}
.personal section h1 {
font-size: 32px;
}
.personal section p {
font-size: 240px;
}
.body {
font-weight: 400;
}