/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* CSS Reset end*/






body {
    /* Back up font and bg */
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(0, 0, 0);
}

/* Background imgs */
#past {
    background-image: url("../images/bg2.png");
    text-shadow: #ff0000aa 0px 0px 6px;
    border-top: solid #ffffff;
}

#present {
    background-image: url("../images/bg3.png");
}

#future {
    background-image: url("../images/bg5.png");
    border-bottom: solid #ffffff;
}

/* Page patterns */
.rhombPatternTop {
    background-image: url('../images/rhombTop.png');
    background-size: contain;
    background-color: #141414;
    border-bottom: double #ffffff;
    height: 30px
}

.rhombPatternBottom {
    background-image: url('../images/rhombBottom.png');
    background-size: contain;
    background-color: #141414;
    border-top: double #ffffff;
    height: 30px;
}

.rhombLabel {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 390px;
    height: 150px;
    color: #ffdddd;
    font-size: 30px;
    margin-left: 10%;
}

.rhombHeader {
    text-align: center;
    width: 300px;
    height: 40%;
    font-size: 40px;
    font-variant: small-caps;
    z-index: 1; /* Keep text above rhombus igms */
    text-shadow: #00000088 0px 0px 7px;


    font-family: "Orbitron", sans-serif;
    font-weight: 800;
    font-style:normal;
}

.sections {
    background-size: cover;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 4px groove #a7a7a7;
    padding-top: 20px;
    padding-bottom: 20px;
}

p {
    width: 400px;
    text-wrap: wrap;
    margin: 80px;
    border-radius: 40px;
    padding: 15px;
    
    text-shadow: #ffffffff 0px 0px 6px;
    box-shadow: #000000aa 0px 0px 20px;


    font-family: "Play", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Bgs for textboxes */
#pastText {
    background-color: #ff6666ee;
}

#presentText {
    background-color: #6a81b2ee;
}

#futureText {
    background-color: #5ac269ee;
}

img {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 300px;
    height: 150px;
    z-index: 0;
    
}

#footer {
    height: 40px;
    background-color: #adadad;
    bottom: 0;
    text-align: left;
    font-family: "Play", sans-serif;
    font-weight: 550;
    font-style: normal;
    font-size: 20px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

#header {
    background-color: #adadad;
    text-shadow: #313131aa 0px 0px 20px;
    
    text-align: center;
    font-size: 40px;
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    font-style: normal;
    padding: 10px;

}

/* Extra ids */
#rightAlign {
    text-align: right;
}

#rhombRight {
    margin-left: 0%;
    margin-right: 10%;
}

#smallText {
    font-size: 30px
}

#footerRightText {
    text-align: right;
    font-weight: 100;
    font-size: 15px;
}

a {
    color: darkblue
}