/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&family=Mulish:wght@200;300;400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Roboto+Mono:wght@100;200;300;400;500;600;700&display=swap');


*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #1c1d25;
    color: white;
    font-family: 'Mulish', sans-serif;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.section {
    margin: 50px 0;
}

.text--secondary {
    color: #DE00FA;
}

.underline {
    text-decoration: underline;
}

h1 {
    margin: 20px 0;
    font-size: 3rem;
}

h2,
h2 a {
    margin: 10px 0;
    color: #00CBFF;
    font-family: 'Roboto Mono', monospace;
    font-weight: 400;
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
    margin: 20px 0;
}

h4 {
    font-size: 1.5rem;
}

h3 + ul {
    margin: 10px 0;
}

li.li-margin {
    margin: 10px 0;
}

li:not(.li-margin) {
    font-size: 1.125rem;
}

.section p {
    margin: 30px 0;
    font-size: 1.25rem;
}

.link--white {
    color: white;
    text-decoration: none;
}

.link--white:hover {
    color: #DE00FA;
}

footer a.copyright {
    color: white;
    font-size: 1.25rem;
}

footer a.validation {
    float: right;
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.5rem;
    margin: 20px;
    transition: .5s ease all;
}

footer a.validation:hover {
    color: #DE00FA;
    border-color: #DE00FA;
}

