@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;500;700&display=swap');

:root {
	--color-bg-1: #252541;
	--color-bg-2: #383856;
	--color-bg-3: #56567a;
}

* {
	box-sizing: border-box;
}

body {
    margin: 0;
	font-family: 'Times', sans-serif;
    font-size: 1em;
	background-color: #f5f5f5;
}

h1 {
    font-size: 2em;
    font-weight: 700;
}

a, a:visited {
    color: #2DC6EE;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

p {
    text-align: justify;
}

ul li {
    margin-bottom: 0.25em;
    text-align: justify;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.box {
    margin: 1.5em;
}

header {
    background-color: var(--color-bg-1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5em 1em;
}

.logo img {
    height: 40px;
    margin-top: 0.25em;
}