
* {
    padding: 0px;
    margin: 0px;
}

body, html {
    background-color: #2e3440ff;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: row;
    justify-content: center;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: baseline;

    position: absolute;
    z-index: 3;
}

.header-buttons {
    width: 1005;
    
    overflow: hidden;
    margin: 24px;
    background-color: #0000;
    border-radius: 32px;
}

.header-button {
    border-width: 0px;

    background-color: #3b4252ff;
    color: #eceff4;

    font-family: sans-serif;
    font-size: 24px;
    font-weight: 1000;

    width: 192px;
    height: 48px;
}

.header-button:hover {
    background-color: #2e3440ff;
}

.banner {
    position: absolute;
    z-index: 1;
    object-fit: cover;
    object-position: 0vw;

    border-bottom-left-radius: 48px;
    border-bottom-right-radius: 48px;

    width: 100vw;
    height: 384px;

    box-shadow: 0px 8px 8px #00000080;
}

main {
    margin: 24px;
    margin-top: 192px;

    width: 80vw; 
    min-width: 512px;

    position: absolute;
    z-index: 2;

    background-color: #3b4252ff;
    border-radius: 16px;
}

main > section {
    width: 384px;
}

main > section > a > div {
    margin: 32px;

    width: 384px;
    height: 256px;

    display: flex;
    flex-direction: column;

    border-radius: 16px;
    overflow: hidden;

    color: #31e84aff;
    background-color: #000000ff;
/*    background-color: #8fbcbbff;*/
}

main > section > a {
    position: relative;
    transition: top 0.25s;

    color: black;
    font-family: sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
}

.article-preview {
    font-family: monospace;
    font-size: 16px;
    padding: 8px;
}

.article-header {
    display: flex;
    justify-content: left;
    align-items: center;

    width: 100%;
    height: 32px;

    background-color: white;
}

.article-header > .title {
    padding-left: 12px;

    width: 100%;
    color: black;
    font-family: sans-serif;
    font-size: 18px;
}

