@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&display=swap');

@font-face {
  font-family: 'Iosevka Nerd';
  src: url('/fonts/iosevka_nerd_light.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'Inter Tight';
  src: url('/fonts/inter_tight.ttf') format('truetype');
  font-style: normal;
}

@keyframes background-breath {
    0% {
		background-position: 0% 50%;
	}

	40% {
		background-position: 100% 50%;
	}

	60% {
		background-position: 0% 50%;
	}

	80% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

html, body {
    background-color: #060616;
    background-image: linear-gradient(30deg, #040606, #3238F0, #182238);
    background-size: 400% 400%;
    min-height: 100vh;
    height: max-content;
    margin: 0;
    padding: 0;
    animation: background-breath 10s infinite;
}

.ui {
    position:relative;
    z-index: 2;
    padding: 2ch;
    font-family: 'PT Sans Narrow', sans-serif;
    font-weight: 300;
    background-color: #000000e0;
    color: whitesmoke;
    text-shadow: 4px 6px 12px #000000;
    width: 85%;
    margin: 0 auto;
    min-height: 100vh;
    height: max-content;
    backdrop-filter: blur(10pt);
}

h1,
h2,
h3,
h4 {
    font-weight: 300;
    margin-top: 22pt;
    margin-bottom: 2ch;
    text-align: center;
    color: white;
}

p {
    text-align: center;
    width: 80%;
    margin: 0 auto;
    margin-top: 20pt;
}

i {
    color: violet;
}

strong {
    font-weight: 300;
}

a {
    text-decoration: none;
    color: cornflowerblue;
    transition: 0.25s;
}

a:hover {
    text-decoration: none;
    color: hotpink;
}

ol {
    list-style-type: decimal;
    text-align: left;
    margin-left: 20%;
}

ul {
    list-style-type: circle;
    display: flex;
    flex-direction: column;
}

ul hr {
    max-width: 30%;
}

li {
    margin: 12pt auto;
}

.best {
    list-style-type: '☆ ';
    color: hotpink;
}


.code {
    font-family: 'Iosevka Nerd', monospace;
    color: lightsteelblue;
    border-color: rgba(255, 255, 255, 0.35);
    border-width: 1pt;
    border-style: solid;
    padding: 2pt;
}

.multi-text {
    font-family: 'Iosevka Nerd', monospace;
    margin: 0 auto;
    margin-top: 20pt;
    padding: 10pt;
    width: 80%;
    text-align: center;
    color: lightsteelblue;
    border-color: rgba(255, 255, 255, 0.5);
    border-width: 1pt;
    border-style: solid;
}

.section {
    display: none;
}

.active-section {
    display: block;
}

.icon {
    display: block;
    margin: auto;
    height: 150pt;
    filter: drop-shadow(4px 6px 12px #000000);
    border-radius: 50%;
}

hr {
    width: 65%;
}
