-2
Good Afternoon, I created a project and am using HTML, CSS and JS in it. I created a menu and applied the :Hover selector to the links, but it doesn’t work! Note: I am using reset.css!
body{
    background-color:#00a08f80;
    font-family: 'Open Sans', sans-serif;
}
header{
    padding: 1em;
}
header img{
    width: 15em;
}
nav{
    position: absolute;
    top: 4.2em;
    left: 15em;
}
nav li{
    display: inline;
    margin: 0 0 0 15px;
}
nav a{
    text-transform: uppercase;
    color: black;
    font-size: 14px;
    text-decoration: none;
}
nav a:hover{
    font-weight: bold;
}
h1{
    color: #fee074;
    text-shadow: 0.1em 0.1em 0.05em #333;
    font-size: 1000px;;    
}
h2{
    color: #27575B;
}
.btn-yellow{
    background-color: rgb(254, 224, 116);  
}<!DOCTYPE html>
<html lang="pt-br">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="assets/css/reset.css">
    <link rel="preconnect" href="https://fonts.gstatic.com">
    <link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&display=swap" rel="stylesheet">
    <link rel="stylesheet" href="assets/css/general.css">
    <title>Yellow Reach</title>
</head>
<body>
    <header>
        <img src="assets/img/logo-yellow-reach.svg" alt="yellow-reach-logo">
        <nav>
            <ul>
                <li><a href="produtos.html">Produtos</a></li>
                <li><a href="planos.html">Planos</a></li>
                <li><a href="http://blog.yellowreach.com.br/">Blog</a></li>
                <li><a href="contato.html">Contato</a></li>
            </ul>
        </nav>
    </header>
</body>
</html>
Cara...you are a monster!!! You helped me a lot!!!!!! Thank you so much!!!
– Dimas Felippe
@Dimasfelippe cool that worked out there! Thanks for the strength, I’m happy to help!
– hugocsl