HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>MovieMixtapes</title>
<link rel="stylesheet" href="styles/reset.css">
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
<header class="cabecalho">
<span class="cabecalho__menu-hamburguer"></span>
<img src="/img/logo.png" alt="Logo da MovieMixtapes">
<a href="#"><img src="img/favoritos.svg" alt="Meus favoritos"></a>
<a href="#"><img src="img/compras.svg" alt="Carrinho de compras"></a>
<a href="#"><img src="img/usuario.svg" alt="Meu perfil"></a>
</header>
</body>
</html>
CSS
@import url("styles/header.css");
:root {
--cor-de-fundo: #D3DAD9;
}
body {
background-color: var(--cor-de-fundo);
}