/* CSS Variables: */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	 --clr1: #4d90fb;
	 --clr2: gold;
	 --clr3:  red;
}

::-webkit-scrollbar {
	width: 20px;
}

::-webkit-scrollbar-track {
	background: white;
	/*border-radius: 50px;*/
}

::-webkit-scrollbar-thumb {
	background: gold;
	border-radius: 50px;
}

html, body {
	height: 100%;
}

/* navigation CSS */
.navbar-brand {
	margin-left: auto;
	margin-right: auto;
}

.navbar-toggler {
	margin-left: auto;
	margin-right: auto;
}

.navbar {
	background-color: var(--clr1);
	border-bottom: 5px solid gold;
	z-index: 99;
}

.navbar h1 {
	color: white;
	font-family: 'Beau Rivage', cursive;
	text-shadow: 0.10em 0.08em 10px black;
} 

.nav-item a:hover {
	color: black;
	text-decoration: underline;
	transition: opacity 0.15s ease-in-out;
}

.dropdown:hover .dropdown-menu {
	display: block;
	margin-top: 0.125em;
}

/* Breaking News CSS*/

.bg-text {
	position: relative;
	max-width: 95%;
	max-height: 100%;
	background-color: rgba(0,0,0, 0.0); /* Black w/opacity/see-through */
	/*backdrop-filter: sepia(100%);*/
	/*box-shadow: 8px 8px 4px; */
 	z-index: 99;
}

.bg-text h1 {
	color: .black;
	text-stroke:  2px solid black;
	font-family: 'Kanit', sans-serif;
	font-size: 5vw;
	text-shadow: 0.10em 0.10em 12px white;
	line-height: 1.6;
}

section {
	/*max-width: 55%;*/
	padding-left: 5%;
	padding-right: 5%;
	color: black;
	padding-top: 50px;
	font-family: sans-serif;
	text-align: center;
}

section h1 {
	font-family: 'Beau Rivage', cursive;
}

section h2 {
	padding-top: 10px;
	padding-bottom: 20px;
}

section p {
	font-size: 1.5rem;
}

#anchor {
	height: 100px;
	margin: auto;
	padding-top: 20px;
}

#wheel {
	max-width: 45%;
	margin: auto;
	padding-bottom: 20px;
}

#controller {
	height: 250px;
	margin: auto;
	padding-bottom: 50px;
}

section li {
	list-style-type: none;
	font-size: 2em;
	font-weight: 500;
}

#enjoy {
	font-family: 'Beau Rivage', cursive;
	font-size: 5em;
	padding-top: 20px;
	padding-bottom: 20px;
}
 /* TICKER TAPE ROLL */
 .tcontainer {
        width: 100%;
        overflow: hidden;
    }
    
    .ticker-wrap {
        width: 100%;
        padding-left: 100%;
        background-color: red;
    }
    
    @keyframes ticker {
        100% {
            transform: translate3d(-100%, 0, 0);
        }
    }
    
    .ticker-move {
        display: inline-block;
        white-space: nowrap;
        padding-right: 100%;
        animation-timing-function: linear;
        animation: ticker 30s infinite;
    }
    
    .ticker-move:hover {
        animation-play-state: paused;
    }
    
    .ticker-item {
        display: inline-block;
        padding: 0 40px;
        font-size: 40px;
        color: white;
    }

/* Parallax Image */
.bg-image {
	background-image: url("manyyachts.jpeg");
  /* Add the blur effect 
  filter: blur(4px);*/
  height: 65%; 
  /* Center and scale the image nicely */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Google Map */
.responsive-iframe {
	position: relative;
	width: 100%;
	height: 700px;
	margin-top: 5em;
	margin-bottom: 5em;
	filter: drop-shadow(16px 16px 10px gray);
}


/* SVG sea background */
#svg-background {
	z-index: -100;
	margin-bottom: 0;
}

/* CSS for RC Titanic marquee */

.ship img {
	max-width: 100%;
	height: auto;
}

.ship {
  animation: move 30s linear infinite forwards;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
}

@keyframes move {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-100%);
  }
}


/* CSS for Footer section */
footer #svg {
	z-index: -100;
	margin: 0 auto;
	width: 100vw;
}

footer {
	width: 100%;
	color: white;
	text-align: center;
	position: absolute;
	margin-bottom: 0;
}

footer #below-border {
	background-image: linear-gradient(to right, #002bdcff, #002bdc88, #32ded466, #32ded488);
	padding-top: 25px;
	border-top: 5px solid gold;
	z-index: 1000;
} 

footer #weblink {
	color: white;
	text-decoration: none;
}

footer #weblink:hover {
	color: black;
} 

#footer-menu {
	justify-content: center;
	padding-bottom: 1rem;
}

#footer-menu a {
	color: white;
}

#footer-menu a:hover {
	color: black;
	text-decoration: underline;
	transition: opacity 150ms ease-in-out;
}



