Carlos, boa tarde!
Creio que o seu código não está do modo que deveria até o momento presente do curso.
Tente fazer as seguintes alterações
.citacao-bio {
background-color: #D9E5E3;
border: .5em solid #C2CCCA;
padding: 1em;
margin: 1em 2em;
width: 30ch;
box-sizing: border-box;
}
.citacao-bio:nth-of-type(even) {
float: left;
margin-left: 0;
}
.citacao-bio:nth-of-type(odd) {
float: right;
margin-right: 0;
}
.citacao-bio:hover,
.citacao-bio:focus {
box-shadow: 0 0 0 99999px rgba(0,0,0,.8);
}
.citacao-bio:nth-of-type(odd):hover,
.citacao-bio:nth-of-type(odd):focus {
transform: scale(1.2) rotate(5deg);
}
.citacao-bio:nth-of-type(even):hover,
.citacao-bio:nth-of-type(even):focus {
transform: scale(1.2) rotate(-5deg);
}