/* Background pattern from www.subtlepatterns.com */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;}

::-webkit-scrollbar-thumb {
    background: #ed1c24;}

::-webkit-scrollbar-track {
    background: #000;}

::selection {
    color: #fff;
    background: #000;}

/* -----------------------
FRAME
----------------------- */

body {
    margin: 0;
    background: url(ricepaper.png);

    font-family: "Noto Sans", sans-serif;
    font-size: 17px;
    line-height: 1.5em;

    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
}

header {
    margin: 25px auto -25px;
    max-width: 600px;
}

header img {
    max-width: 100%;
    height: auto;
}

.content {
    margin: 50px auto;
    max-width: 700px;

    color: #000;
}

.infoflex {
    display: flex;
    gap: 0 90px;
    margin: auto;
    width: 80%;
    flex-wrap: wrap;
}

.special {
    color: #ed1c24;
    font-size: 25px;
    line-height: 1.5em;
}

footer {
    margin: 0;

    background: #000;
    color: #fff;
    font-size: 13px;
    padding: 10px;
    text-align: center;
}

/* -----------------------
TEXT
----------------------- */

h1 {
    margin: 25px 150px 25px 50px;

    background: #000;
    color: #fff;
    font-size: 30px;
    font-family: "Averia Serif Libre", cursive;
    font-weight: 400;
    padding: 5px 0 5px 25px;
}

h1 span {
    border-bottom: 5px solid #ed1c24;
}

.content a:link, .content a:visited, .content a:focus {
    background: #f6e700;
    border-bottom: 2px solid #000;
    color: #000;
    text-decoration: none;
    transition: 0.5s;
}

.content a:hover, .content a:active {
    background: #000;
    color: #fff;
}

footer a:link, footer a:visited, footer a:focus {
    border-bottom: 2px solid #f6e700;
    color: #fff;
    text-decoration: none;
    transition: 0.7s;
}

footer a:hover, footer a:active {
    background: #f6e700;
    color: #000;
}

.small {
    font-size: 15px;
}

ul li {
    margin-bottom: 15px;
    list-style-type: square;
}

/* -----------------------
MOBILE VIEW
----------------------- */

@media only screen and (max-width: 780px) {
    header {
        width: 100vw;
    }
    
    section {
        padding: 0 15px;
    }
    
    h1 {
        margin: 25px 35px;
    }
}