<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* global */
@import url('https://fonts.googleapis.com/css?family=Roboto');


.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

/* media */
@media (min-width: 1920px) {
    .container {
        position: absolute;
        top: 48%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
}

@media (min-width: 785px) and (max-width: 1920px) {
    .container {
        margin: 1rem 0 3rem;
    }
}

@media (max-width: 785px) {
    .container {
        margin: 1rem 0 3rem;
    }
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #222831;
    color: darkgray;
}

.container {
    text-align: center;
}

h1, .white {
    color: #ffd369;
    font-size: 3rem;
    margin-bottom: 20px;
}

h2 {
    color: #ffd369;
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem;
}

a {
    color: #eeeeee;
    text-decoration: none;
    padding: 2px;
    font-size: 2rem;
}

item {
    font-size: 1.5rem;
    text-decoration: none;
    padding: 15px;
}

ul {
    list-style: none; /* Remove default bullets */
}

ul li::before {
    content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    font-size: 1.5rem;
    color: #eeeeee;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

i {
    font-size: 1.5rem;
}

p {
    padding: 5px 5px 5px 0;
    font-size: 1.5rem;
}

ul {
    font-size: 1.5rem;
}

.section-list i {
    margin: 0 15px;
}

/* animations / utilities */
.container a:hover {
    color: #ade6e1;
    cursor: pointer;
    transform: scale(1.5);
    transition: 0.3s;
}

.container i.highlight:hover {
    color: #ade6e1;
    cursor: pointer;
    transform: scale(1.5);
    transition: 0.3s;
}

.white:hover {
    position: relative;
    padding-left: 10px;
}</pre></body></html>