
/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set background color and font color */
body {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Set font family and size */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
}

/* Set minimalistic layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Set solemn style for headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

/* Set minimalistic style for paragraphs */
p {
    margin-bottom: 20px;
}

/* Set minimalistic style for links */
a {
    color: #ffffff;
    text-decoration: none;
}

nav {
    display:flex;
    justify-content:space-around;
    align-items:center;
    padding: 0rem calc((100vw - 1300px) / 2);
    min-height:8vh;
    background-color:#1b1b1b;
    font-family: 'Poppins', sans-serif;
}

.logo {
    color:#fff;
    font-weight: bold;
    text-transform:uppercase;
    font-size:1.5rem;
    padding: 0 2rem;
}

nav a {
    color:#fff;
    text-decoration:none;
    font-size:1.2rem;
}
nav a:hover {
    color:#f26a2e;
    transition: 0.3s ease-out;
}
/* Set style for footer */
footer {
    background-color: #333333;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    /* put the footer at the bottom of the page*/
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
}

