Segue o código desenvolvido em aula. Me adiantei e comecei a fazer o footer e configurar as tags h1, h2 etc no css HTML:
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<title>Alura +</title>
</head>
<body>
<section class="container principal ">
<h1>Com o Combo+, você pode aproveitar a Alura+ e o Alura Língua por um preço único.</h1>
<img src="/img/Combo.png" alt="O combo+ é a junção do alura+ com o alura Língua">
</section>
<footer>
<img src="/img/Logo.png" alt="Alura+">
</footer>
</body>
</html>
CSS:
:root {
--background-color: #00030C;
--primary-text: #FFFFFF;
--secondary-text: #F9F9F9;
--alternative-text: #C0C0C0;
--button-color: #167BF7;
}
body{
display: block;
background-color: var(--background-color);
color: var(--primary-text);
}
.principal{
background-image: url("/img/Background.png");
background-repeat: no-repeat;
background-size: contain;
}
.container{
height: 100vh;
}
h1, h2, h3, h4, h5 {
font-weight: 700;
}
h1 {
font-size: 1.75rem;
}
h2 {
font-size: 1.5rem;
}
h3 {
font-size: 1.625rem;
}
h4 {
font-size: 1.125rem;
}
h5 {
font-size: 0.875rem;
}
footer {
text-align: center;
}