* {
    padding:0;
    margin: 0;
    box-sizing: border-box;

}

html, body {

    font-size: 16px;
    background: url("../images/gay_flag.png") no-repeat center center;
    background-color: rgba(255,255,255,0.9);
    background-blend-mode: lighten;
    background-size: 100% 100%;
    color: rgba(0, 0, 64, 0.9);
    min-width: 800px;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

html {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
 
}

#header-navigation {
    text-align: center;
}

#header-navigation h1 {
    padding: 20px 0px;
}

div {

}

p {
    margin-bottom: 10px;
}



.summary {
    margin: 10px 20px;
    text-align: justify;
}

.section-title {
    margin: 10px 30px;
    font-weight: bold;
}


.alphabet {
    margin: 20px 50px;
    text-align: justify;
}

.alphabet-header {
    font-size: 20px;
    font-weight: bold;
}

li {
    list-style: none;
    margin-left: 20px;
    margin-bottom: 20px;
}

#footer-navigation {
    font-size: small;
    text-align: center;
}



/* mouse trail effect */



.trail {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #ff6600;
    border-radius: 50%;
    pointer-events: none;
    animation:  fade 0.5s forwards;
}

@keyframes fade {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}



