@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@600&family=Open+Sans&display=swap');

body{
    margin: 0;
}

h1, h2{
    font-family: 'Merriweather', serif; /* рассказать о перечислении через запятую */
}

p, h2{
    font-family: 'Open Sans', sans-serif;
    font-size: 25px;
    background-color: white;
    font-family: 'Merriweather', serif;
}

/* шапка */

header{
    background-color: #080a0f;
    color: limegreen;
    display: flex;
    justify-content: space-between;
    background-image: url(background.jpg);
    position: fixed;
}
main{
    background-image: url(background2.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.logo{
    padding: 20px;
    width: 40%;
}

.logoImg{
    float: left; /* рассказать о свойстве */
    margin-right: 20px;
    width: 90px;
    height: 100px;
}

.headerH1, .headerH2{ 
    margin: 0;
}

ul {
    width: 100%;
    list-style: none; /*убираем маркеры списка*/
    padding-left: 0; /*убираем левый отступ, равный 40px*/
    display: flex;
    justify-content: space-evenly;
  }

a {
    color: white;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none; /* рассказать об убирании подчеркивания */
    font-size: 14px;
}
.navA{
    margin-right: 50px;
    color: white;
    background-color: black;
}

/* картинка с текстом */

.mainTextBlock{
    width: 35%;
    line-height: 1.3em; /* рассказать о высоте строки и читабельности */
}

.title {
    padding-left: 120px;
}

/* команды */

article{
    width: 30%;
}

.photo1{
    width: 500px;
}
/* подвал */

footer{
    background-color: #080a0f;
    padding: 20px;
}

.pF{
    color: #b2b2b2;
    font-size: 18px;
    color: white;
    background-color: black;
}
.container{
    display: flex;
    justify-content: space-evenly;
}
nav{
    display: flex;
    align-items: center;
}

b{
    color: red;
}