

/* Reset default margins and padding */

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

a {
    text-decoration: none;
    color: #c0d9ff; /* light blue */
}



.spacer {
    /* to space row items */
    height: 50px;
}

.hr-line-divider {
    /* GENERIC horizontal line divider */
    width: 80%;
    max-width: 400px;
    height: 1px;
    border-bottom: 2px dashed hsl(212, 40%, 25%); /* muted light blue */
    margin: 10px auto;
    
}


/* ---  THE NAVBAR  ---  */
/* TODO: make it responsive */

.header {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
}

.navbar {
    padding: 10px 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}
.navbar a {
    text-decoration: none;
    color: #c0d9ff; /* light blue */
}






/* Hardcoded darktheme for everone */
body {
    margin: 0;
    font-family: Verdana, sans-serif;
    font-size: 1.1em;
    color: #c0d9ff; /* light blue */
	background-color: #202020;
    display: grid;
    grid-template-rows:
       50px    /* header */
       auto     /* nav */
       1fr      /* main content */
       auto;    /* footer */
    align-items: start;
    /* min-height: 100vh; */
}

/* --- MAIN CONTENT --- */

.content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
}


h2 {
    margin-top: 20px;
    margin-bottom: 8px;
}

/* ---  PARAGRAPHS  ---  */
p {
    font-size: 1em;
    line-height: 2em;
}



.container {
    /* For a general div container */
    width: 90%;
    max-width: 800px;
    color: #e0e0e0;
	background-color: #1e1e1e;
	padding: 40px;
	border-radius: 10px;
	margin: 20px auto;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    /* When screen is smaller than that  */
    .container {
        width: 95%;
        padding: 10px;
        margin: 10px auto;

    }
}

.footer {
    text-align: center;
    font-size: 0.8em;
    padding: 10px;
}


