Я скорее всего ошибаюсь, но разве в этом случае section не должен равняться image?
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="theories1.css">
<meta charset="UTF-8">
<title>Теория 1</title>
</head>
<body>
<header>
<h1>Биогенная</h1>
</header>
<section>
<div class='blockimage1'>
<img class='image1' src='https___www.lifeofpix.com_wp-content_uploads_2018_05_DSCF4445.jpg' alt="green"/>
</div>
</section>
</body>
</html>
body, h1,h2, h3, h4 , p ,a {
margin: 0;
font-size: 100%;
font-weight: normal;
}
header {
width: 100%;
height: 150px;
background-image: linear-gradient(-60deg, #16a085 0%, #f4d03f 100%);
}
h1{
color: #ffffff;
font-family: ‘Raleway’,sans-serif;
font-size: 62px;
font-weight: 800;
line-height: 72px;
margin: 0 0 24px;
text-align: center;
text-transform: uppercase;
}
section{
width: 100%;
height: 1000px;
background-color: aquamarine;
}
.blockimage1{
width: 80%;
height: 100%
}
.image1{
height: 100%;
width: 100%;
background-size: contain;
}
.card{
width: 200px;
height: 200px;
background-color: white;
}