.cookie-headings {
  font-family: "Cookie", cursive;
  font-weight: 400;
  font-style: normal;
}


.open-sans-p {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

body {
    background-color: #000000;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

#canvas {
    top: 0;
    left: 0;
    position: fixed;
    z-index: -1;
}

nav {
    background-color: #6c6c6c;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px;
    color: #ffffff;
}

nav > a {
    padding: 20px;
    text-decoration: none;
    color: #ffffff;
}

nav > a:hover {
    background-color: #000000;
}

nav ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li a {
    padding: 20px;
    display: block;
    text-decoration: none;
    color: #ffffff;
}

nav ul li a:hover {
    background-color: #000000;
}

header {
    display: flex;
    margin: 10px;
    align-items: center;
    text-align: center;
    font-size: 75px;
    justify-content: center;
}

img {
    width: 190px;
    height: auto;
}

main {
    margin: 10px auto;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h2 {
    font-size: 60px;
}

p {
    font-size: 20px;
}

#about h2 {
    text-align: center;
}

#facts {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.facts {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:10px;
}

.fact-card {
    background-color: rgb(51, 49, 51);
    text-align: center;
    border-radius: 20px;
    align-items: center;
    justify-items: center;
    height: 90px;
    width: 350px;
    justify-content: center;
    padding: 7px;
    margin: 5px;
    display: flex;
}