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

html {
    overflow-y: scroll;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: white;
    color: black;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    border: 1px solid black;
    padding: 40px;
}

element.style {
    background-image: radial-gradient(#000 0.5px, transparent 0.5px), radial-gradient(#000 0.5px, transparent 0.5px);
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
    opacity: 0.15;
}

h1 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 32px;
}

.main-content {
    max-width: 800px;
    width: 100%;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: .5px black solid;
}

.logo {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    font-family: 'Titillium Web', sans-serif;
    font-size: 18px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.nav a:hover {
    color: #666;
}

.ibm-plex-sans-regular {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.section {
    margin-bottom: 40px;
    border-bottom: .5px solid black;
    padding-bottom: 20px;
}

footer {
    margin-top: auto;
    padding: 10px;
    text-align: center;
}
