﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

:root
{
    --light: #fcfcfc;
    --bordershadow: #bababa;
    --shadow: #737373;
    --dark: #454545;
    --backred: #412;
    --forered: #e45;
}

::selection
{
    background-color: var(--backred);
    color: var(--forered)
}

*
{
    margin: 0;
    padding: 0;
    user-select: none;
}

body
{
    background-color: var(--light);
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    cursor: default;
}

li
{
    list-style-type: none;
}

a
{
    text-decoration: none;
    transition: color 0.27s ease;
}

a:hover
{
    color: deepskyblue;
    cursor: pointer;
}

a:hover:visited
{
    color: fuchsia;
}

header, section
{
    display: block;
    width: 100%;
}

h1 a, h1 a:hover, h1 a:hover:visited
{
    font-size: 1.4rem;
    display: block;
    margin: 10% 5% 0% 5%;
    color: inherit;
}

#cluster
{
    display: block;
    margin: 5%;
}

#cluster li
{
    display: inline-block;
    width: 300px;
    margin: 0 5% 5% 0;
    border-left: 1px solid var(--bordershadow);
}

#cluster article
{
    display: block;
    margin: 5%;
}

#cluster h2
{
    color: var(--shadow);
    font-size: 0.8rem;
    font-weight: 200;
    margin-bottom: 2%;
    user-select: text;
}

#cluster p
{
    font-size: 1.12rem;
    font-weight: 800;
    user-select: text;
}
