На все требования выскакивает вопросительный знак
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Transition Delay</title>
<style>
.box {
width: 150px;
height: 150px;
background-color: #f1c40f;
transition: background-color 1.5s linear 1s, width 1.5s linear 1s, height 1.5s linear 1s;
}
.box:hover {
width: 200px;
height: 200px;
background-color: #e67e22;
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>