:root {
    --grey : #969896;
    --red : #cc6666;
    --green : #b5bd68;
    --yellow : #f0c674;
    --blue : #81a2be;
    --white : #f4f4f4;
    --purple : #c259cf;
    --black : #1d1f21;
}

::selection {
    background: var(--blue);
    color: var(--white);
}

li::marker {
    content: '+ ';
}
  

@font-face {
    font-family: 'pixel';
    src: url('apple.ttf') format('truetype');
}

html, body {
    height: 100dvh;
    margin: 0;
    padding: 0;
    font-family: 'pixel';
    background: var(--white);
    color : var(--black);
    font-family: monospace;
    font-smooth: none;
    -webkit-font-smoothing : none;
}

img {
    -webkit-user-drag: none;
}

a {
    color: var(--blue);
    text-decoration: none;
    -webkit-user-drag: none;
}

a:hover {
    text-decoration: underline;
    background: var(--blue);
    color : var(--white);
}

span {
    color: var(--red);
    text-decoration: none;
    -webkit-user-drag: none;
}

span:hover {
    text-decoration: underline;
    background: var(--red);
    color : var(--white);
}

ul {
    font-family: 'pixel';
    font-size: 0.5em;
    margin-left: 19px;
    padding: 0;
    display: flex;
    flex-direction: column;
	align-items: flex-start;
}

p {
    font-family: 'pixel';
    font-size: 0.5em;
    margin : 0;
    margin-bottom: 5px;
}

.text {
    border: 1px solid var(--grey);
    padding: 10px;
}

.title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.subtitle {
    color : var(--red);
    text-decoration: underline;
}

.main {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
}

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

.section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.border {
    color : var(--white);
    background : var(--grey);
    height : fit-content;
    margin: 10px;
    padding: 5px;
    width : 30rem;
    text-align: center;
}

.absolute {
    position: absolute;;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .main {
        flex-direction: column;
        gap: 0;
    }

    .section {
        width: 100% !important;
        margin-bottom: 10px;
        margin-top: 0 !important;
    }
    
    .absolute {
        position: initial;
        text-align: center;
        width: 100% !important;
        margin-bottom: 10px;
    }

    .border {
        margin: 0;
        width: 100%;
    }
}
