﻿body {
    margin: 0; /* This will remove any default spacing */
    padding: 0; /* This will remove any default spacing */
    min-width: 320px; /* i did this because i didnt want page head to wrap */
}

page1 {
    min-height: 500px;
    min-height: 100vh;
    border-bottom: 1px solid rgba(0,0,0,0);
    border-top: 1px solid rgba(0,0,0,0);
    background: linear-gradient(to bottom, #740707 0%, #DBB954 90%);
    font-size: 20px;
    font-family: 'Times New Roman';
}

.column33 {
    box-sizing: border-box;
    color: white;
    margin: 5px 0%; /* 1st is top/bottom, 2nd is left/right */
    padding: 15px;
    width: 100%;
}

.row {
    content: "";
    clear: both;
    display: table;
    padding: 0px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 10px;
}

#nav {
    margin-top: 0px;
    position: fixed;
    background-color: white;
    top: 0px;
    right: 0px;
    padding: 10px;
    font-family: impact;
    font-size: 16px;
    font-weight: bold;
    z-index: 2;
    margin-right: 0px;
    border-bottom-left-radius: 10px;
    box-shadow: 2px 2px 2px gray;
    text-decoration: none;
}

    #nav li {
        display: inline;
        margin-left: 5px; /* spacing between links of nav bar */
    }

#page2 {
    min-height: 500px;
    min-height: 100vh;
    border-bottom: 1px solid rgba(0,0,0,0);
    border-top: 1px solid rgba(0,0,0,0);
    background: linear-gradient(to bottom, #740707 0%, #DBB954 90%);
    font-size: 18px;
    font-family: 'Times New Roman';
}

#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    background-color: #740707;
    color: #CCCCCC;
    letter-spacing: 0.1ex;
    text-align: center;
    font-family: 'Times New Roman';
    font-size: 18px;
    padding: 2px;
}

    #footer a {
        text-decoration: none;
        color: white;
    }

@media screen and (min-width: 600px) {

    .container {
        padding: 0px 15px;
    }

    .column33 {
        background: linear-gradient(to bottom, #740707 50%, #DBB954 90%);
        box-sizing: border-box;
        width: 32%;
        padding: 5px 15px; /* 1st is top/bottom, 2nd is left/right */
        margin: 0px 0.5%; /* 1st is top/bottom, then left/right.
                                       If each element is 32% and has 0.5% on left and right,
                                       the total will add up to 99% for three */
        float: left;
    }
}
