@import url(style-large.css) screen and (min-width: 1100px);
@import url(style-small.css) screen and (max-width: 1099px);

/* Color theme variables */
* {
    --main-bg-color: #080018;
    --main-text-color: #fff;
    --main-text-hover-color: #aaa;
    --main-text-note-color: #666;
    --main-border-color: #666;
    --main-hover-color: #fff;
    --header-color: #000;

    margin: 0;
    padding: 0;

    background-color: var(--main-bg-color);
    color: var(--main-text-color);
    font-family: 'Roboto', sans-serif;
}

.Rounded {
    border-radius: 100%;
}

.Horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: var(--header-color);
    z-index: 1;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
}

header ul {
    width: 80%;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: var(--header-color);
    font-size: 2em;
}

header ul li {
    display: inline-block;
    margin-left: 20px;
}

header ul li a {
    text-decoration: none;
    color: var(--main-text-color);
    transition: font-size 0.2s ease, color 0.2s ease;
}

header ul li a:hover {
    font-size: 1.5em;
    color: var(--main-text-hover-color);
    transition: font-size 0.2s ease, color 0.2s ease;
}

header img {
    width: 80px;
    height: 80px;
    border-radius: 100%;
}

/* Main */

main {
    position: relative;
    top: 100px;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;

    /*Center allign all content*/
    display: flex;
    flex-direction: column;
    align-items: center;
}

article {
    position: relative;
    width: 80%;
    padding: 20px;
    box-sizing: border-box;
    border: 2px solid var(--main-border-color);
    border-radius: 40px;
    margin: 20px;
    font-size: 1.5em;

    /*Cutoff all content that overflows*/
    overflow: hidden;
    transition: border-color 0.5s ease;
}

article h1 {
    font-size: 2em;
    margin-bottom: 20px;
    left:400px;
}

article h1.Title {
    font-size: 2em;
    margin-bottom: 20px;
    /*center allign text*/
    text-align: center;
}

article p.TimeFrame {
    font-size: 0.8em;
    color: var(--main-text-hover-color);
    text-align: right;
}

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

article img {
    border-radius: 40px;
    border: 2px solid var(--main-border-color);
    overflow: hidden;
    max-height: 80vh;
    max-width: 100%;
}

article a {
    text-decoration: underline;
    color: var(--main-text-color);
}

article a:hover {
    color: var(--main-text-hover-color);
    transition: color 0.2s ease;
}

article:hover {
    /*animated hover color*/
    border-color: var(--main-hover-color);
    transition: border-color 0.5s ease;
}

article ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Footer */
footer {
    display: flex;
    flex-direction: row;
}

footer div {
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

footer ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer a {
    text-decoration: underline;
    color: var(--main-text-color);
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--main-text-hover-color);
    transition: color 0.2s ease;
}

.small {
    max-width: 200px;
}

.float_right {
    float: right;
    margin-left: 20px;
}

.note {
    font-size: 0.6em;
    color: var(--main-text-note-color);
}