html { /*css for html*/
    font-size: 100%;
}
body { /*css for body*/
    margin: 0; /*makes container have no margin*/
    font-size: 100%;
    background-color: black;
}
h1,h2,h3,h4,h5,h6 { /* place holder for h1, h2, h3, h4, h5, h6*/
    font-size: 100%;
}
.container { /*css for container*/
    background-image: url("images/background2.jpg"); /*static image for the background*/
    background-repeat: no-repeat; /*makes it so image does not repeat*/
    background-size: cover; /*makes image cover the page*/
    width: 100%;
    padding: 0% 0% 3% 0%;
    height: 125vh !important; /*makes the container go to the end of the web page*/
}
.heading img { /*css for lockup*/
    display: flex; /*makes display flex*/
    margin: auto; /*centers image*/
    width: 25%;
    padding: 3%;
}
.section { /*css for section*/
    display: flex; /*makes display flex*/
    justify-content: center; /*puts space around the flex boxes*/
    padding: 0% 5% 0% 5%;
}
.section div {
   padding: 1% 2% 1% 2%;
   margin: 3% 2% 0% 2%;
   border: 2px solid white; /*creates a border around the divs*/
   border-radius: 15px;
}
.section a { /*css for section div links*/
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 125%;
    color: white;
}
.section a:hover { /*changes text color of link upon hover*/
    color: rgb(249, 89, 129);
}
.section2 { /*css for section 2*/
    text-align: center; /*centers section2 content*/
    font-size: 200%;
    font-family: 'Poppins', sans-serif; /*font from google fonts*/
    padding: 5%;
    margin: 0% 10% 0% 10%;
    color: white;
}
#contact { /*changes the contact size and margin*/
    font-size: 250%;
    margin-bottom: 5%;
}
.email { /*css to style the email links*/
    text-decoration: none; /*gets ride of the unerline in a link*/
    padding: 2% 10% 2% 10%;
    border: 2px solid white; /*changes border for link*/
    border-radius: 15px;
    color: white;
    margin: 5% 10% 5% 10%;
    line-height: 4em; /*changes line height to give more space between the links*/
}
.email:hover { /*changes color upon hovering over link*/
    color: rgb(249, 89, 129);
}
.section3 { /*css for section3 div*/
    display: flex; /*changes display to flex*/
    justify-content: center; /*centers content*/
    margin: 3% 45% 3% 45%;
}
.footer { /*css for footer div*/
    color: white;
    text-align: center;
}

@media only screen and (max-width: 900px) { /*media querie that changes content in a device 900px or lower*/
    .heading img { /*changes lockup width*/
        width: 50%;
    }
    .section { /*chnages the section div to column instead of row*/
        text-align: center;
        flex-direction: column;
    }
    .section div { /*changes the padding and margin-top*/
        padding: 2% 30% 2% 30%;
        margin-top: 5%;
    }
    .email { /*changes font size and margin*/
        font-size: 30%;
        margin: 5% 5% 2% 5%;
        border-radius: 5px;
    }
    #contact { /*changes contact font size and margin-bottom*/
        font-size: 100%;
        margin-bottom: 10%;
    }

}

