@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
:root {
    --bg-color: #111;
    --text-color: #f8f8f2;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-color);
}

body * {
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: var(--text-color);
    font-family: 'Montserrat';
    font-weight: 500;
    max-width: 90%;
    @media screen and (min-width: 1500px) {
        max-width: 50em;
    }
}

.title {
    margin-top: 2em;
    margin-bottom: 2em;
}

.articles-list {
    /* margin-top: 12vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.article {
    border-color: var(--text-color);
    border-style: solid;
    border-radius: 25px;
    border-width: 2px;
    /* box-shadow: 0px 3px 6px; */
    display: block;
    margin-bottom: 1em;
    /* width: 50em; */
    width: 100%;
    padding: 1.5em;
    /* background-color: rgb(230, 226, 201); */
}

p {
    margin-bottom: 1em;
    font-size: 1em;
}

h1 {
    font-size: 2em;
}

#cowboy {
    height: 200px;
    margin-bottom: 2em;
}