@import url('https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:ital,wght@0,300;0,700;1,300&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:ital,wght@0,300;0,700;1,300&family=Sacramento&display=swap');

:root {
    --color-one: #eca7d8;
    --color-two: #bf0099;
    --color-three: #26b7db;
    --color-four: #bed18d;
    --color-text: #969696;
    --color-five: #26b7db;
}

* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    height: 100%;
    background-color: #daf6f6;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: var(--color-text);
    font-size: 14px;
    line-height: 30px;
}

a {
    font-family: 'Sacramento', cursive;
    color: var(--color-two);
    font-size: 25px;
    text-decoration: none;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

a:hover {
    font-family: 'Sacramento', cursive;
    color: var(--color-three);
    font-size: 25px;
    text-decoration: none;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.top-bar {
    width: 100%;
    height: 300px;
    background-color: var(--color-one);
    margin-bottom: -280px;
}

.container {
    margin: 0 auto;
    width: 981px;
    background-color: #ffffff;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
}

.nav-container {
    width: 100%;
    text-align: center;
}

.navigation {
    width: 70%;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 300;
    color: #ffffff;
    padding: 10px;
}

.navigation a {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    padding: 5px 15px;
    text-transform: uppercase;
}

.navigation a:hover:before {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 300;
    content: '{ ';
    color: inherit;
}

.navigation a:hover:after {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 300;
    content: ' }';
    color: inherit;
}

.content {
    padding: 15px;
    display: block;
}

.entry {
    display: block;
    padding-top: 5px;
    text-align: justify;
}

.page-title {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 300;
    border-left: 3px solid var(--color-one);
    border-right: 3px solid var(--color-four);
    padding: 3px 10px;
    color: #a891ba;
    display: inline-block;
    border-radius: 5px;
    font-size: 30px;
}

.page-title .iconify {
    font-size: inherit;
}

blockquote {
    background-color: var(--color-four);
    padding: 10px;
    color: #ffffff;
    border-radius: 10px;
    margin: 10px;
}

blockquote a {
    color: inherit;
    text-decoration: none;
    font-style: italic;
}

b,
strong {
    color: var(--color-three);
}

u {
    background-color: var(--color-one);
    color: #ffffff;
    text-decoration: none;
    padding: 2px 5px;
}

.footer-container {
    margin: 0 auto;
    width: 981px;
    padding: 4px 0;
    background-color: var(--color-five);
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
}

.footer-container a {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
}

.footer-left {
    text-align: left;
    padding: 4px;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
}

.footer-right {
    text-align: right;
    padding: 4px;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
}


ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


li {
    padding: 5px;
    background: -webkit-linear-gradient(var(--color-two), var(--color-three));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 2px solid rgba(154, 154, 154, 0.1);
    color: #ffffff;
}

li:before {
    content: '»';
    border: 1px dotted var(--color-three);
    padding: 3px 8px 5px 8px;
    margin: 5px;
    border-radius: 8px;
}

alert:before {
    content: '!';
    color: #fff;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 5px 15px;
    margin: 0 10px;
    border-radius: 20px;
}

alert {
    background: rgb(249, 191, 243);
    background: -moz-linear-gradient(100deg, rgba(249, 191, 243, 1) 0%, rgba(238, 202, 164, 1) 100%);
    background: -webkit-linear-gradient(100deg, rgba(249, 191, 243, 1) 0%, rgba(238, 202, 164, 1) 100%);
    background: linear-gradient(100deg, rgba(249, 191, 243, 1) 0%, rgba(238, 202, 164, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f9bff3", endColorstr="#eecaa4", GradientType=1);
    padding: 20px;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    border-radius: 10px;
}

alert a {
    color: inherit;
}



label {
    text-transform: uppercase;
    color: var(--color-text);
    display: block;
    padding: 10px 0;
}

label:before, #question:before {
    content: '»';
    background-color: var(--color-two);
    color: #ffffff;
    padding: 3px 8px 5px 8px;
    margin: 5px;
    border-radius: 8px;
}

input, textarea, option, select, button {
    background-color: rgba(154,154,154,0.1);
    padding: 10px;
    border: 0px;
    color: rgba(154,154,154,0.9);
}

button:hover {
    background-color: var(--color-three);
    color: #fff;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

input, textarea, option, select {
    width: 80%;
}

button {
    width: 40%;
    margin: 10px;
}

#question {
    text-transform: uppercase;
    color: var(--color-text);
    display: block;
    padding: 10px 0;
}


additional {
    background-color: var(--color-three);
    padding: 20px;
    color: rgba(255,255,255,0.5);
    display: inline-block;
}

another-box {
    padding: 20px;
    line-height: 30px;
    font-style: italic;
    background-color: rgba(154,154,154,0.1);
    border-radius: 20px;
    display: inline-block;
}

content-box {
    padding: 20px;
    line-height: 30px;
    background-color: rgba(154,154,154,0.1);
    display: block;
}


h1 {
    background-color: var(--color-two);
    color: rgba(255,255,255,0.9);
    padding: 10px;
    font-size: 23px;
    font-family: 'Sacramento', cursive;
    letter-spacing: 2px;
}

h2 {
    background-color: var(--color-one);
    color: rgba(255,255,255,0.9);
    padding: 10px;
    font-size: 16px;
    font-family: 'Sacramento', cursive;
    letter-spacing: 2px;
}

h3 {
    background-color: var(--color-three);
    color: rgba(255,255,255,0.9);
    padding: 10px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.mobile {
    display: none;
}


@media only screen and (max-width: 1050px),
only screen and (max-device-width: 1050px) {

    .container,
    .footer-container {
        width: 90%;
    }


    .mobile {
        display: block;
        text-align: right;
        width: 100%;
    }


    .mobile svg {
        fill: #fff;
        background-color: var(--color-one);
        padding: 10px;
        border-radius: 5px;
    }


    .mobile input[type=checkbox] {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .mobile label {
        -webkit-appearance: push-button;
        -moz-appearance: button;
        display: inline-block;
        cursor: pointer;
        border-radius: 3px;
    }

    .mobile div.menu {
        max-height: 0;
        transition: max-height 0.5s linear;
        overflow: hidden;
        background-color: var(--color-one);
        text-align: center;
    }

    .mobile input[type=checkbox]:checked~div.menu {
        max-height: 800px;
        transition: max-height 0.5s linear;
    }

    .mobile .menu a,
    .mobile .menu a:visited {
        display: block;
        padding: 15px 0px;
    }

    .mobile .menu ul {
        list-style: none;
        margin: 3px 3px;
    }

    .navigation {
        display: none;
    }

    .menu a {
        color: #fff;
        font-family: 'Open Sans Condensed', sans-serif;
        font-weight: 300;
        color: #ffffff;
        text-decoration: none;
        font-size: 20px;
        text-transform: uppercase;
    }

}