oii, galera! tudo bom? estou com dificuldade para implementar um background com gradiente. já tentei colocar o background no css em body e no html em style, mas não funcionou. se alguém puder me ajudar, agradeço muito!
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="styles/style.css">
<link rel="stylesheet" href="reset.css">
<title>Calculadora</title>
<style>
body{
background-image: linear-gradient(102.4deg,rgba(253,189,85,1) 7.8%,rgba(249,131,255,1) 100.3%);
}
</style>
</head>
CSS
body{
display: flex;
text-align: center;
flex-direction: column;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}