﻿
/* ------------ Mobile and Common Styles --------------- */
body {
    margin: 0;
    padding: 0; /* avoid white line just inside browser window */
    /* set up default text properties - most commonly used */
    font-family: Tahoma, 'Arial Black', san-serif;
    font-size: 16px;
    background-color: #FFFFCC;
    line-height: 1.5em;
}

.container {
    width: 100%;
    box-sizing: border-box; /* gets rid of horizontal scroll bar, counts padding and border in box size */
    /* border:thin solid blue; */
}

.imageContainer {
    width: 100%;
    padding-left: 2%;
    padding-right: 4%;
    padding-bottom: 24px;
    /* border-box includes padding and border in the
       total width and height of the box */
    box-sizing: border-box;
}
#myImage{
    width:25%;
    float: left;
}

img {
    width: 100%;
    margin: 1%;
    margin-bottom: 8px;
    box-shadow: black 0px 0px 5px;
    box-sizing: border-box;
}

.pageTitle {
    padding: 10px 15px; /* 1st is top/bottom, 2nd is left/right */
    background-color: gold;
    color: black;
    margin-bottom: -3px; /* cover up white space between title and content */
    font-size: 1.3em;
    line-height: 2.5em;
}

.one-to-three {
    /* border:thin solid red; */
    width: 100%;
    padding: 15px;
    background-color: #334411;
    color: white;
    margin: 5px 0%; /* 1st is top/bottom, 2nd is left/right */
    box-sizing: border-box; /* gets rid of horizontal scroll bar, counts padding and border in box size */
}

/* ------------ Desktop Only Styles --------------- */
@media screen and (min-width: 600px) {

    .container {
        background-color: beige;
        padding: 0px 15px;
    }

    .one-to-three {
        background-color: rgba(0,0,0,0);
        padding: 5px 15px; /* 1st is top/bottom, 2nd is left/right */
        width: 32.3%;
        margin: 0px 0.5%; /* make the width of the 3 elements plus margins total 100% */
        float: left;
    }

    .clear {
        clear: both;
    }
    /* Three image containers (use 25% for four, and 50% for two, etc) */
    .column {
        float: left;
        width: 30%;
        padding: 5px;
    }

    /* Clear floats after image containers */
    .row::after {
        content: "";
        clear: both;
        display: table;
    }
}

html, body {
    margin: 0px; /* remove any default spacing */
    padding: 3px; /* remove any default spacing */
    min-width: 320px; /* don't want to the page titles to wrap */
}

h1 { /* "hero style" page titles */
    font-size: 3.0em;
}

#nav { /* without this there is space above the nav bar */
    margin-top: 0px;
}

.sng-page {
    min-height: 500px; /* fallout for older browsers */
    min-height: 100vh;
    /* Dont ask me why, but I was getting a white space between pages 
    unless I had top and bottom borders, so I provided a 1 pixel border 
    with color blank with 0 opacity (solidness). */
    border-bottom: 1px solid rgba(0,0,0,0);
    border-top: 1px solid rgba(0,0,0,0);
}

#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    background-color: black;
    color: #CCCCCC;
    letter-spacing: 0.1ex;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    padding: 12px;
}

    #footer a {
        text-decoration: none;
        color: gold;
    }

        #footer a:hover {
            color: white;
        }

        ​table {
    font-family: arial, sans-serif;
   
}

td, th {
    border: 1px solid #dddddd;
    text-align:center;
    padding: 8px;
    width:33%;
}

tr:nth-child(even) {
    background-color: #dddddd;
   
}

/* colors to differentiate the pages */
#page1 {
    background-color: blanchedalmond;
}

#page2 {
    background-color: grey;
}

#page3 {
    background-color: burlywood;
}

#nav {
    position: fixed;
    background-color: white;
    top: 0px;
    right: 0px;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    z-index: 2;
    margin-right: 0px;
    border-bottom-left-radius: 10px;
    box-shadow: 2px 2px 2px gray;
}

    #nav li {
        display: inline;
        margin-left: 5px; /* spacing between links of nav bar */
    }
.newspaper {
    margin:45px;
 width: 70%;
 
    column-count: 3;
    column-gap: 40px;
    column-rule-style: solid;
    float:left;
}
.Portfolio {
    display: inline-block;
    margin-top: 6px;
    margin-left: 55px;
    width: 75%;
    height: 1000px;
}