@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&family=Sora:wght@400;700&display=swap');

:root {
    --primary: #0d6efd;
    --dark: #21252f;
    --body: #888;
    --box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

body {
    font-family: Sora, "sans-serif";
    line-height: 1.7;
    color: var(--body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-4 {
    color: var(--dark);
    font-weight: 700;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: lightblue;
}


.navbar .nav-link {
    font-size: 13px;
}


.landing {
    background-image: url(../img/dylan-mcleod-4zqvu9dyvSk-unsplash\ \(1\).jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 2;
    font-size: 15px;
}

.landing::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(21, 18, 43, 0.5);
    z-index: -1;
}

section {
    padding-top: 120px;
    padding-bottom: 120px;
}