
/* Style the navigation menu */
.navbar {
    width: 100%;
    background-color: #CCFFFF;
    overflow: auto;
}

/* Navigation links */
.navbar a {
    float: left;
    padding: 20px;
    color: black;
    text-decoration: none;
    border: solid;
    font-size: 20px;
    font-family: Verdana, Geneva, sans-serif;
    width: 11.111%; /* Four equal-width links. If you have two links, use 50%, and 33.33% for three links, etc.. */
    text-align: center; /* If you want the text to be centered */
}

/* Add a background color on mouse-over */
.navbar a:hover {
    background-color: #3385ff;
}

/* Style the current/active link */
.navbar a.active {
    color: #CCFFFF;
    background-color:black;
}

.ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #CCFFFF;
    color: black;
    text-decoration: none;
    font-size: 20px;
    font-family: Verdana, Geneva, sans-serif;
    width: 14.285%; /* Four equal-width links. If you have two links, use 50%, and 33.33% for three links, etc.. */
    text-align: center; /* If you want the text to be centered */
}

.li {
    float: left;
}

.li a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 20px;
    text-decoration: none;
    color: black;
    text-decoration: none;
    font-size: 20px;
    font-family: Verdana, Geneva, sans-serif;
    width: 14%; /* Four equal-width links. If you have two links, use 50%, and 33.33% for three links, etc.. */
    text-align: center; /* If you want the text to be centered */
}


/* Add responsiveness - on screens less than 500px, make the navigation links appear on top of each other, instead of next to each other */
@media screen and (max-width: 500px) {
    .navbar a {
        float: none;
        display: block;
        width: 100%;
        text-align: center; /* If you want the text to be center-aligned on small screens */
    }
}

/* Responsive text classes */

.p1 {
    color: black;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 2vw;
}

.p2 {
    color: black;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1vw;
}

.p3 {
    color: red;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1vw;
    font-weight: bold;
}

.p4 {
    color: blue;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 2vw;
}

.p5 {
    color: blue;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1vw;
}

.p6 {
    color: black;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1vw;
    text-align: center;
    font-weight: bold;
}

.hr {
    height: 1px;
    background-color: #CCFFFF;
}

.scrolling {
    color: red;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 2vw;
}

 @media screen and (max-width: 500px) {
    .p1 {
    color: black;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 4vw;
    }

    .p2 {
    color: black;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 3vw;
    }

    .p3 {
    color: red;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 3vw;
    font-weight: bold;
    }

    .p4 {
    color: blue;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 4vw;
    }

    .p5 {
    color: blue;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 3vw;
    }

    .p6 {
    color: black;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 3vw;
    text-align: center;
    font-weight: bold;
    }

    .scrolling {
    color: red;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 5vw;
    font-weight: bold;
    }

 }

/* Responsive container for Google Map */

.google-map {
    position: relative;
    padding-bottom: 50%
}

.google-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Gallery Styling */

/* Image Resizing */

.portrait {
    width: 480;
    height: 600;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.landscape {
    width: 600;
    height: 480;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.square {
     width: 600;
    height: 600;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

* {
    box-sizing: border-box;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
    position: relative;
    background-color: #CCFFFF;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: black;
    font-weight: bold;
    font-size: 30px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* Slideshow */

/* Slideshow container */
.slideshow-container {
    max-width: 900px;
    position: relative;
    margin: auto;
}

/* The dots/bullets/indicators */
.dot {
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #FFFFFF;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .text {font-size: 11px}
}

.button-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.my-border {
    border: 1px solid black;
    border-collapse: collapse;
    background-color: #FFE4B5;
    border-radius: 10px;
}

.gift-border {
    border: 2px solid black;
    padding: 5px;
    border-radius: 10px;
}
 