@font-face {
    font-family: 'portago';
    src: url('../fonts/portago_itc.ttf');
}

html {
    box-sizing: border-box;
}

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

body {
    background-color: black;
    color: white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

a {
    color: white;
    text-decoration: none;
    transition: 0.2s;
}

a:hover {
    color: grey;
}

p {
    margin: 0;
}

.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.container {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 900px;
    padding: 20px;
}

.socials img {
    width: 30px;
    margin: 0px 10px;
    opacity: 0.5;
    transition: 0.3s;
    cursor: pointer;
}

.socials img:hover {
    opacity: 1;
}

.hero_image {
    width: 100%;
}

.heading {
    font-family: 'portago', Arial, sans-serif;
    text-transform: uppercase;
    color: #e7cc20;
    font-size: 50px;
    margin-top: 30px;
    margin-bottom: 0px;
    word-wrap: break-word;
    line-height: 1;
    text-align: center;
    max-width: 90%;
}

.listings {
    font-size: 26px;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.listings p {
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.2);
    max-width: 600px;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: 0.1s;
    width: 100%;
}

.listings p:hover {
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.date {
    color: #f5b746;
    margin-right: 10px;
    display: block;
    text-transform: none;
    font-size: 22px;
}

.archived {
    filter: grayscale(1);
    opacity: 0.5;
}

@media only screen and (min-width: 600px) {
    .heading {
        font-size: 60px;
        margin-top: -10px;
        margin-bottom: 10px;
    }
}