/* ---- FONTS ---- */



/* ---- BODY ---- */

body {
    background-image: url(../../WebsiteImages/BgTiles/BgTile_Mine/Website_BgTile_TbeTrees.png);
}

/* ---- CONTAINER ---- */

.container {
    min-width: 945px;
    min-height: auto;
    display: grid;
    grid-template-columns: 150px 485px 300px;
    grid-template-rows: 175px 200px 150px 150px 150px;
    grid-template-areas:
        'header main photo'
        'header main sidebarRight'
        'sidebarLeft main sidebarRight'
        'sidebarLeft main back'
        'footer footer footer';
    justify-content: center;
    grid-gap: 10px;
}

/* ---- HEADER ---- */

.header {
    grid-area: header;
    border: 5px solid black;
    background-image: url(../../WebsiteImages/Artwork/OcTbeVerticalHeaderWebsite.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


/* ---- LEFT SIDEBAR ---- */

.sidebarLeft {
    grid-area: sidebarLeft;
    border: 5px solid black;
    overflow: auto;
    background-color: black;
}

.trailer {
    width: 95%;
}


/* ---- MAIN ---- */

.main {
    grid-area: main;
    border: 5px solid black;
    padding: 10px;
    overflow: auto;
    background-image: url(../../WebsiteImages/BgTiles/BgTile_Mine/Website_BgTile_PaperYellowLined.png);
    background-attachment: local;
}

.quote {
    background-image: url(../../WebsiteImages/BgTiles/BgTile_Mine/Website_BgTile_EyeAnim.gif);
    color: white;
    height: auto;
    text-align: center;
    padding: 20px;
    border: 8px double white;
}

.quoteOpen {
    float: left;
}

.quoteClose {
    float: right;
}

.pfp {
    width: 50%;
    margin: 10px;
}

.floatLeft {
    float: left;
}

.floatRight {
    float: right;
}

.decomeDiv {
    text-align: center;
}


/* ---- PHOTO ---- */

.photo {
    grid-area: photo;
    background-image: url(../../WebsiteImages/Artwork/OcTbeGroupPhotoWebsite.png);
    background-repeat: no-repeat;
    border: 5px solid black;
}


/* ---- RIGHT SIDEBAR ---- */

.sidebarRight {
    grid-area: sidebarRight;
    border: 5px solid black;
    background-image: url(../../WebsiteImages/BgTiles/BgTile_Mine/Website_BgTile_PaperYellowLined.png);
    background-attachment: local;
    padding: 10px;
    width: auto;
    overflow: auto;
}

.status {
    background-image: url(../../WebsiteImages/BgTiles/BgTile_Mine/Website_BgTile_EyeAnim.gif);
    color: white;
    padding: 10px;
    text-align: center;
    border: 8px double white;
}

.meme1 {
    width: 95%;
    margin: 10px;
}

.meme2 {
    width: 40%;
    padding: 10px;
    margin: auto;
}

#homecoming1 {
    float: left;
}

#homecoming2 {
    float: right;
}


/* ---- BACK BUTTONS ---- */

.back {
    grid-area: back;
    margin: auto;
}

#backHome {
    float: left;
}

#backOc {
    float: right;
}

/* ---- FOOTER: New add-on ---- */

footer {
    grid-area: footer;
    text-align: center;
    border: 5px solid black;
    padding: 10px;
    background-image: url(../../WebsiteImages/BgTiles/BgTile_Mine/Website_BgTile_PaperYellowLined.png);
}