@import url('https://fonts.googleapis.com/css2?family=Iceland&family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

:root {

    font-size: 16px;
    font-family: "Inria Sans", sans-serif;

    --accent-col: #fd02a1;

    --bg-col: #f9f9f9;
    --text-col: #1E1E1E;
}

html {

    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    background: var(--bg-col);
    color: var(--text-col);
}

body {

    margin: 0 auto;
    padding: 0 15px;
    max-width: 850px;
}

h4 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

#tos div,
#privacy div {
    margin-bottom: 30px;
    padding-left: 10px;
    position: relative;
}

#tos div::before,
#privacy div::before {
    content:"";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #0002;
}

#privacy{
    margin-top: 100px;
}
a {
    color: var(--text-col);
}

.btn {
    width: fit-content;
    border: 2px solid var(--text-col);
    color: var(--text-col);
    padding: 0.3rem 0.7rem;
    border-radius: 0.3rem;
    -webkit-border-radius: 0.3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin: 0.4rem 0;
    transition: all 0.2s ease-in-out;
}

.btn:hover {
    opacity: 1;
    background: var(--text-col);
    color: var(--bg-col);
}

main>a {
    text-decoration: none;
    width: fit-content;
}

.logo {
    display: block;
    font-family: "Iceland", "Inria Sans", sans-serif;
    font-size: 2rem;
    text-decoration: none;
    color: #000;
}

.logo::after {
    display: inline-block;
    content: ".";
    font-size: 3.5rem;
    line-height: 0;
    height: 2rem;
    color: var(--accent-col);
}

main>a * {

    width: fit-content;
}

h1 {
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    margin: 6rem 0;
}

h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

p {
    font-size: 1.2rem;
    margin: 0;
    text-align: justify;
}

main>p {
    margin: 8rem 0;
}

details>summary::before {
    content: "View ";
}

details[open]>summary::before {
    content: "Hide ";
}

summary {
    display: block;
    text-decoration: underline;
    cursor: pointer;
}

details {
    margin-top: 8rem;
    margin-bottom: 2rem;
}

details>ul {

    box-shadow: 2px 2px 4px 2px #0004;
    width: fit-content;
    padding: 0.5rem;
    border-radius: 0.5rem;
    list-style: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 4vmin 0;
}

nav>a {
    color: var(--text-col);
    text-decoration: none;
    margin: 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease-in-out;
}

nav>a:hover {
    border-bottom: 2px solid var(--text-col);
}

#faq > h2 {
    width: fit-content;
    margin: auto;
    font-weight: 300;
    font-size: 2rem;
    margin-top: 8rem;
    margin-bottom: 4rem;
}
#faq ul {
    padding: 0;
}

#faq ul li {
    display: block;
    border: 1px solid var(--text-col);
    border-radius: 10px;
    margin: 0.5rem;
}

#faq details {
    margin: 0;
    font-size: 1.2rem;
}

#faq p {
    border-top: 1px solid #0003;
    padding: 0.7rem;
    margin: 0;
    text-decoration: none;
}
#faq details summary {
    padding: 0.7rem;
    padding-left: 2.7rem;
    margin: 0;
    text-decoration: none;
    position: relative;
}

#faq details summary:before {
    content: "";
    left: 1rem;
    top: 50%;
    position: absolute;
    width: 10px;
    height: 10px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: translateY(-50%) rotate(-45deg);
    transition: all 200ms ease-in-out;
}

#faq details[open] summary:before {
    transform: translateY(-50%) rotate(45deg);
}