* {
    box-sizing: border-box;
}

h1, h2 {
    margin: 6px 0;
}

@media only screen and (max-width: 600px) {
    h2 {
        font-size: 20px;
    }
}

hr {
    margin: 4px;
    border: 0.5px solid black;
}

a, a:active, a:visited {
    text-decoration: none;
}

button {
    width: max-content;
    font-family: "Segoe UI", system-ui, sans-serif;
    background-color: dodgerblue;
    border: none;
    font-size: 14px;
    padding: 8px;
    border-radius: 8px;
    color: white;
    cursor: pointer
}

body {
    background-color: whitesmoke;
    font-family: "Segoe UI", system-ui, sans-serif;
    display: flex;
    flex-direction: column;
    margin: 0;
}

body > div {
    padding: 0 24px;
}

nav, footer {
    display: flex;
    /*flex-direction: row;*/
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

nav ul {
    display: flex;
    gap: 6px;
    flex-direction: row;
    list-style: none;
}

nav ul li, .btn {
    background-color: dodgerblue;
    color: white;
    padding: 8px 10px;
    border-radius: 8px;
    margin: auto;
    cursor: pointer;
    width: max-content;
}

@media only screen and (max-width: 600px) {
    nav h1 {
        font-size: 20px;
    }
}

section {
    background-color: #e5e5e5;
    padding: 0 5%
    /*border-radius: 8px;*/
}