* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ol {
    list-style: inside;
	display: inline-block;
}

html {
    color: var(--text-color);
    font-family: var(--font-family);
    background-color: var(--bg-color);
    min-height: calc(100vh - var(--footer-height))
}

a, a:hover, a:visited {
    color: var(--accent-color);
    text-decoration: none;
    cursor:pointer;
}

hr {
    color: var(--accent-color)
}

.spoiler {
	display: inline-block;
	background-color: var(--bg-color);
	color: var(--bg-color);
	border-radius: 0.33rem;
	transition: 0.6s;
}

.spoiler:hover {
	color: var(--text-color);
}

.codeblock {
	display: inline-block;
	background-color: var(--transparent-bg-dark);
	border-radius: 0.5rem;
}

h1, h2, h3 {
	display: inline-block;
}

.content {
    background-color: var(--secondary-color);
    border-radius: 0.8rem;
    font-size: var(--content-font-size);
    margin-bottom: var(--content-margin);
}

.footer-padding {
    min-height: var(--footer-height);
    max-height: var(--footer-height);
    height: var(--footer-height);
    background-color: var(--secondary-color);
}

.footer {
    width: 100%;
    text-align: center;
    background-color: var(--secondary-color);
    border-top: solid 2px var(--accent-color);
    font-size: var(--footer-font-size);
    min-height: var(--footer-height);
    max-height: var(--footer-height);
    height: var(--footer-height);
    line-height: calc(var(--footer-height) / 2.5);
vertical-align: middle;
}

.main-container {
    min-height: calc(100vh - var(--footer-height))
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

.text-bold {
	font-weight: bold;
}

.text-ul {
	text-decoration: underline;
}

@media screen and (max-width : 768px) {
    .content {
        border-radius: unset;
    }

    .main-container {
        min-height: calc(100vh - var(--footer-height))
    }
    
}