/*this is a comment*/

/*you can apply the same style to multiple tags by listing them with commas*/

#parallax {
    max-width: 100%;
    height: 100%;
    padding: 80px;
}
.link-mod a {
    float: left;
    font-family: sans-serif;
    font-size: 12px;
    color:deepskyblue;
    margin:-5px;
    background-color: ;
    padding:5px 10px;
    border-radius: 15px;
    text-decoration: none;
    border: none;
}

.container {
    max-width: 100%;
    height: 100%;
    padding: 80px;

}

header,
footer,
section {
    max-width: inherit;
    line-height: 2.0;
    padding: 15px;
    margin: 15px auto;
    border: 2px solid gold;
    border-radius: 15px;
    min-height: 200px;
    background-color: rgba(0, 0, 0, 0.7)
}

/*you can specify just links inside of nav by listing without commas*/

nav {
    text-align: center;
    padding-bottom: 25px;
}

nav a {
    font-family: sans-serif;
    font-size: 20px;
    margin: 20px;
    background-color: ;
    color: #ffca00;
    padding:15px 20px;
    border-radius: 20px;
    text-decoration: none;
    border: 2px solid burlywood;
}

/* hover is a mouseover effect */

nav a:hover {
    background-color: azure;
    color: #A223FF;
}

h1 {
    color: burlywood;
    font-family: sans-serif;
    text-align: center;
    font-size: 72px;
    margin:10px;
}

h2 {
    text-align: center;
    color: burlywood;
    font-family: ;
    font-size: 36px;
}

p {
    color: #31BA13;
    text-align: left;
    font-size: 15px;
}

body {
    height: 100%;
    background-image: url(DSCN1428.JPG);
    background-repeat: no-repeat;
    background-attachment:fixed;
    background-position: center;
    background-size:cover;

}

a {
    font-family: sans-serif;
    font-size: 25px;
    color:deepskyblue;
    font-weight: 50;
    text-decoration: none;
}

a:hover {
    color: purple;
    text-decoration: underline;
}
a:visited {
  color: #727272; 
}
img.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
