/* Styling HTML Elements */
body{
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-image: url("../images/Background-Full-Size.jpg");
}

a{
    color: rgb(2, 78, 53);
}

p{
    font-size: 1.1em;
}

img{
    width: 100%;
}

#banner{
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/* Styling HTML Elements - Hover */
a:hover{
    color: rgb(0, 58, 36);
}
h2:hover{
    font-size: 2.01em;
}
img:hover{
    width: 100.5%;
    height: auto;
}


/* Styling Classes */
.transparent-section{
    background-color: rgba(129, 127, 127, 0.507);
    max-width: 98%;
    margin: auto;
    margin-bottom: 30px;
    padding: 0.4%;
    border-radius: 1px;
}

.gallery-pic{
    width: 100%;
    height: auto;
    border-radius: 1%;
    opacity: 0.85;
    margin-bottom: 5%;
    transition: opacity 0.4s;
}


/* Styling Classes - Hover */
.transparent-section:hover{
    background-color: rgba(129, 127, 127, 0.55);
}

.gallery-pic:hover{
    opacity: 1;
}

/* Setting Mobile behaivor */
@media (max-width: 800px){
    #banner{
        width: 98%;
        height: auto;
    }
    .transparent-section{
        max-width: 94.5%;
        margin-bottom: 1em;
        padding: 0.4em;
    }
}
@media (max-width: 575px){
    .gallery-pic{
        max-width: 90%;
        max-height: auto;
        margin-left: 5%;
        margin-right: 0%;
    }
}