CSS is not loading

Hello,
I am struggling making my CSS work along with Bootstrap. I alrady tried a few solutions from Stack Overflow like adding: type=“text/css” to my CSS link and still not working. Probably is something silly but I just can’t get it right. Can someone take a look and help me please? I apologize for the long post.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <!-- CSS only -->
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
    <link rel="stylesheet" type="text/css" href="css/style.css">

My CSS

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap');
:root{
    --primary-color: #f57971;
    --secondaru-color: #e1ede4;
    --tertiary-color: #1a1c1b;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

div {
    background-color: aquamarine;
}

h2 span{
    font-size: 1rem;
    font-family: 'Caveat', cursive;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bolder;
}

.navbar {
    font-size: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: var(--primary-color);
}

Your stylesheet link looks good to me. It must be a path problem.
You could try /css/style.css
Your css folder needs to right next to your html file.