@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200;300;400;500;600;700;800;900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Normalize */

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-family: 'Inconsolata', monospace;
    background-color: #2B2B31;
    color: #fff;
    margin: 0 5%;
}

a {
    text-decoration: none;
    color: #fff;
}

a:hover {
    color: #c5c5c5;
    transition: 0.3s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

li {
    margin: 0 2rem;
    padding: 0;
    font-weight: 700;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

h1 {
    font-weight: 700;
    font-size: 2.5rem;
    margin: 0;
}

strong {
    font-weight: 700;
}

i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

img {
    max-width: 100%;
}

span {
    font-weight: 700;
    margin: 1rem 0;
}


footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    position: fixed;
    bottom: 0;
    width: 100%;
}


/* Nav */

.logo {
    font-weight: 800;
    font-size: 2rem;
}

.cheesing {
    color: #F6BA0A;
}

.proper {
    text-shadow: 0 0 5px #FFFFFF;
}

/* Content */

.content {
    margin: 10vh 0;
}

.vl {
    background-color: #fff;
    width: 5px;
    height: 100px;
    margin-right: 10px;
}

.content-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 50ch;
    font-weight: 500;
    font-size: 1.2rem;
    color: #A9A9A9;
}


/* Footer */

.img-cont {
    max-width: 60vh;
    margin: 0 auto;
    position: relative;
}