@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;1,300;1,600&display=swap');


body {
    font-family: 'Fauna One', serif;
    margin: 0;
    
    /* Adding bootstrap broke the html color? */
    background-color: black;
    color: white;
}

header{
    padding-top: 1.5em;

    font-family: 'Bungee', cursive;
    text-decoration-line: underline overline;
    text-decoration-style: dashed;
    text-decoration-thickness: 4px;
    text-underline-offset: 5px;
}

main{
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.img-fluid {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
    display: block;
    height: auto;
    
    padding: 6px;
    border: 1px solid orange;
    border-radius: 3px;
}


h1{
    text-align: center;
    font-size: 2.7em;
}

a:link{
color: orange;
}
a:visited{
color: orange;
}
a:hover{
color: orangered;
}
a:active{
color: gray;
}


/* Vertical Navigation Bar */
nav{
    background-color: black;
    padding-top: 5px;
}
nav ul {
    list-style-type: none;
    text-align: center;
}
nav li {
    display: inline;
}
nav a {
    text-decoration: none;
    padding: 10px;
}
nav a:link {
    color: orange;
}
nav a:visited {
    color: orange;
}
nav a:hover {
    color: orangered;
    text-decoration: none;
}
nav a:active {
    color: white;
}


/* Photo Gallery */
.gallery .preview {
    width: 100%;
    height: auto;
}
.gallery .gallery-thumbnails img {
    width: 100px;
    height: 75px;
    margin: 3px 10px 10px 0;
}
.gallery .gallery-thumbnails img:hover {
    opacity: .8;
    cursor: pointer;

    border: 1px solid orange;
    border-radius: 3px;
}
.gallery .preview img#preview {
    padding: 1px;
    max-width: 100%;
    height: auto;
    margin: 0 auto !important;
    display: block !important;

    margin-bottom: 15px !important;
    margin-top: 10px !important;

    padding: 5px;
    border: 1px solid orange;
    border-radius: 3px;
}


footer{
    text-align: left;
    border-top: 1px solid gray;
    padding: 10px;
}
footer ul {
    list-style-type: none;
    font-size: 1em;
}
footer a {
    text-decoration: none;
}
footer a:link {
    color: orange;
}
footer a:visited {
    color: orange;
}
footer a:hover {
    color: orangered;
    text-decoration: none;
}
footer a:active {
    color: white;
}

.center-me {
    text-align: center;
}

h4{
    font-family: 'Bungee', cursive;
    padding: 2px;

    text-decoration-line: underline overline;
    text-decoration-style: dashed;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

/* font awesome */
.fa{
    color: orange;
    font-size: 2em;
}

.fa-phone-square{
    font-size: 2.3em;
}

/* CSS for Tablets */
@media only screen and (max-width: 1024px) {
    h1 {
        font-size: 2em;
    }

    h4{
        line-height: 1.4em;
    }
}

/* CSS for Smartphones */
@media only screen and (max-width: 768px) {

    .col-sm-2 {
        display: none;
    }

    .col-sm-10 {
        text-align: left;
        margin-left: 2em;
        margin-right: 2em;
        border-left: 1px solid orange;
        border-right: 1px solid orange;
        border-radius: 6px;
    }
}
