Как подключить класс в файле style.css?
Здравствуйте. При написании сайта возникла проблема: не получается подключить два класса ".wating .waiting_wrapper" и ".wating .waiting_wrapper .waiting_item". Проверял код, ошибок не нашел. file:///C:/Users/REFRESH/OneDrive/%D0%94%D0%BE%D0%BA%D1%83%D0%BC%D0%B5%D0%BD%D1%82%D1%8B/project/index.html или http://127.0.0.1:5500/.
<!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>Wordpress интенсив</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<section class="promo">
<div class="container">
<div class="logo">
<img src="icons/logo.png" alt="logo" class="logo_img">
<div class="logo_text">WordPress интенсив</div>
</div>
<h1 class="title">Создать свой сайт на WordPress</h1>
<div class="simple">
<h2 class="title_big">это просто!</h2>
<div class="line"></div>
</div>
<h2 class="title">Куда сложнее сделать это правильно!</h2>
<div class="promo_text">
Ежедневно в России появляется более 5 000 новых сайтов.<br>
И только единицы из них становятся популярными и приносят ощутимую прибыль. В чем секрет? В чем формула успеха? Узнайте на предстоящем двухдневном <span>БЕСПЛАТНОМ</span> интенсиве!
</div>
<button class="promo_btn">Записаться на интенсив!</button>
<div class="more">
<div class="more_text">узнать больше об интенсиве</div>
<img src="icons/arrow_down.png" alt="down" class="more_img">
</div>
</div>
</section>
<section class="waiting">
<div class="container">
<h2 class="waiting_header">Что вас ждет в нашем интенсиве?</h2>
<div class="waiting_divider"></div>
<div class="waiting_subheader">2 бесплатных полноценных обучающих вебинара,
где:</div>
<div class="waiting_wrapper">
<div class="waiting_item">
<img src="img/wating/1.png" alt="1" class="wating_img">
<div class="wating_descr">Всего за два бесплатных вебинара мы научим вас,
как создать свой сайт на WordPress.</div>
</div>
<div class="waiting_item">
<img src="img/wating/2.png" alt="2" class="wating_img">
<div class="wating_descr">Покажем, как правильно оптимизировать сайт и сделать его привлекательным для поисковых систем. Только свежая,
профессиональная и актуальная информация!</div>
</div>
<div class="waiting_item">
<img src="img/wating/3.png" alt="3" class="wating_img">
<div class="wating_descr">Вы узнаете, что такое «хорошая индексация»,«высокая посещаемость», «стабильный прирост посетителей», «ТОП по запросам»
и, что намного важнее, как добиться всех этих показателей!</div>
</div>
</div>
</div>
</section>
</body>
</html>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.container {
width: 1140px;
margin: 0 auto;
}
.promo {
height: 800px;
background: url('../img/bg/main_bg.jpg') center center/cover no-repeat;
padding: 38px 0 61.02px 0;
}
.logo .logo_img {
display: block;
margin: 0 auto;
}
.logo .logo_text {
font-family: Roboto;
color: #FFFFFF;
font-weight: 500;
font-size: 15px;
line-height: 24px;
text-transform: uppercase;
text-align: center;
margin-top: 14px;
}
h1 {
margin-top: 53px;
}
.title {
color: #F9BF3B;
font-family: "Roboto - Black";
font-weight: 900;
font-size: 41px;
line-height: 41px;
text-align: center;
text-transform: uppercase;
}
h2.title {
margin-top: 30px;
}
.simple .title_big {
font-family: "Roboto - Black";
color: #FFFFFF;
font-weight: 400;
font-size: 80px;
text-align: center;
text-transform: uppercase;
margin-top: 21px;
}
.promo .promo_text {
padding: 0 17px;
margin-top: 22.5px;
color: #FFFFFF;
text-align: center;
font-family: "Roboto Light";
font-style: normal;
font-weight: 300;
font-size: 21px;
line-height: 28px;
}
.promo .promo_text span {
font-weight: 700px;
font-family: "Roboto-Bold";
color: #F9BF3B;
}
.promo .promo_btn {
display: block;
margin: 0px auto;
margin-top: 63px;
width: 313px;
height: 72px;
background: linear-gradient(0deg, #2798B9 0%, #3AB6DA 100%);
box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.18);
border: 4px solid rgba(0, 0, 0, 0.23);
color: #FFFFFF;
font-family: "Roboto Condensed";
font-weight: normal;
font-size: 21px;
line-height: 24px;
text-transform: uppercase;
cursor: pointer;
outline: none;
}
.more {
margin-top: 53px;
}
.more .more_text {
color: #FFFFFF;
font-family: "Roboto - Thin";
font-weight: 400;
font-size: 15px;
text-align: center;
text-transform: uppercase;
}
.more .more_img {
display: block;
margin: 0 auto;
margin-top: 13px;
}
.waiting {
height: 604px;
background: #EFEFEF;
padding: 88px 0 75px 0;
}
.waiting .waiting_header {
color: #252525;
font-family: Roboto;
font-weight: 400;
font-size: 30px;
text-align: center;
text-transform: uppercase;
}
.waiting .waiting_divider {
width: 220px;
height: 7px;
background: #F9BF3B;
margin: 0 auto;
margin-top: 35px;
}
.waiting .waiting_subheader {
margin-top: 18.5px;
color: #4A4A4A;
font-family: Roboto;
font-weight: 400;
font-size: 23px;
text-align: center;
}
.wating .waiting_wrapper {
margin-top: 45.5px;
}
.wating .waiting_wrapper .waiting_item {
vertical-align: top;
display: inline-block;
width: 339px;
text-align: center;
}