/* background-color: #fff9e6;? color ideas: https://www.designpieces.com/palette/pokemon-logo-color-palette-hex-and-rgb/ font idea: https://fonts.google.com/specimen/Lato?preview.text=Jolteon%20LSST-DESC */
* {
    margin: 0;
    padding: 0;
    border: 0;
}

/* DIVIDERS */
.section-box {
    margin-left: 16vw;
    margin-right: 16vw;
    margin-top: 2vh;
    margin-bottom: 2vh;
}

.subsection-box {
    margin-left: 2vw;
    margin-right: 2vw;
}

.center-flex {
    display: flex;
    justify-content: center;
}


/* CONTENT TYPES */
h1 {
    font-size: 36px;
    padding-top: 12px;
    padding-bottom: 12px;
}

h2 {
    font-size: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
}

h3 {
    font-size: 18px;
    padding-top: 8px;
    padding-bottom: 8px;
}

h4 {
    font-size: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
}

p {
    font-size: 16px;
    padding-top: 4px;
    padding-bottom: 4px;
}

a {
    color: #2a75bb !important;
}

a:visited {
    color: #3c5aa6 !important;
}

span {
    font-size: 16px;
}

ul {
    list-style: none;
    list-style-position: outside;
    padding: 0px 0px 0px 8px;
}

li {
    list-style: none;
	padding: 8px 4px 0px 16px;
}
li::before {
    content: '';
    display: inline-block;
    height: 1em;
    width: 1em; 
    background-image: url(./images/pokeball.svg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-right: 8px;
}

hr {
    background-color: #3c5aa6;
    height: 4px;
    width: 30vw;
    margin-left: 35vw;
    margin-right: 35vw;
}

/* TEXT STYLES */
.italic { font-style: italic}
.bold { font-weight: bold }
.tt { font-family: monospace }