@import url("./reset.css");

:root {
    --background-color: #191A1C;
    --primary-text-color: #FEFFF3;
    --secondary-text-color: #6DF3D8;
}

html, body {
    width: 100%;
    height: 100%;

    font-family: arial, verdana, sans-serif;

    color: var(--primary-text-color);
}

body {
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    gap: 35px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 25px;
}

header h1 a {
    font-size: 0.8em;
    color: var(--secondary-text-color);
    font-weight: bold;
}

header nav ul {
    display: flex;
    gap: 10px;
}

header nav ul li {
    list-style-type: none;
}

header nav ul li a {
    font-size: 1.3em;
    color: var(--secondary-text-color);
    text-decoration: none;
    font-weight: bold;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;

    flex-direction: column;
    gap: 20px;

    text-align: center;
}

main h1, main p {
    font-weight: bold;
}

.sections {
    display: flex;
    justify-content: space-around;
}

section {
    width: 40%;
}

section h1 {
    font-weight: bold;
}

section ul li a {
    text-decoration: none;
    color: var(--secondary-text-color);
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer a {
    text-decoration: none;
    color: var(--secondary-text-color);
    font-weight: bold;
    font-size: 1.2em;
}

@media only screen and (min-width: 700px) {
    body {
        width: 45%;
        margin: 0 auto;
    }

    header {
        padding: 25px 0px;
    }

    .sections {
        justify-content: space-between;
    }
}

