/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@font-face {
   font-family: "redland09";
   src: url("fonts/redland09.ttf") format("truetype"),
        url("fonts/redland09.otf") format("opentype");
}

/*
colors:
white:          #FEF0E7
grey:           #C2C3C7
black:          #020408
bright pink:    #FF004D
main purple:    #7E2553
dark purple:    #422136
tan:            #9E6566
main blue:      #1D2B53
dark blue:      #111D35
*/

a.plink:link {color:#FF004D;text-decoration: none;}
a.plink:visited {color:#7E2553;text-decoration: none;}
a.plink:hover {color:#8962D6;text-decoration: underline;}

a.implink:link{color:#9E6566;text-decoration: none;}
a.implink:visited{color:#9E6566;text-decoration: none;}
a.implink:hover{color:#1D2B53;text-decoration: line-through;}

a.hlink:link{color:#FEF0E7;text-decoration: none;}
a.hlink:visited{color:#FEF0E7;text-decoration: none;}
a.hlink:hover{color:#FEF0E7;text-decoration: none;}

/* --------- */

body 
{
    font-family: "Eczar";
    font-weight: 100;
    background-color: #020408;
    color: #FEF0E7;
    text-align: center;
    cursor: url("images/cursor.png"), default;
    margin-bottom: 0;
}

a:hover {
    cursor: url("images/cursorPoi.png"), pointer;
}

/* --------- */

.general
{
    text-align: left;
    width: 49.4%;
    outline: 3px double #7E2553;
    padding: 0.3%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 0;
}

.speech
{
    background-image: url(images/noise.png);
    color: #C2C3C7;
    text-align: left;
    width: 24%;
    outline: 3px solid #C2C3C7;
    padding: 0.5%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    border-radius: 100px;
    margin-bottom: 0;
}

/* --------- */

.quote
{
    font-family: "redland09";
    text-align: center;
    font-size: 350%;
    font-weight: 100;
    outline: none;
    background-color: #020408;
    margin-bottom: 0;

}

.signing
{
    font-family: "redland09";
    text-align: right;
    font-size: 100%;
    margin-right: 25%;
    margin-top: 10px;
    margin-bottom: 0;
}

/* --------- */

h1
{
    font-family: "redland09";
    text-align: center;
    font-size: 600%;
    font-weight: 100;
}

p
{
    font-family:"Eczar";
    font-size: 150%;
    color: #C2C3C7;
    line-height: 1;
}

ul
{
    font-family: "Eczar";
    text-align: left;
    list-style-type: upper-latin;
    padding-left: 40%;
}

/* --------- */

.frame
{
    outline: 3px double #7E2553;
    width: 9%;
    height: auto;
    image-rendering: pixelated;
}