html {
	font-family: "Comic Neue", cursive;
  font-weight: 700;
  font-style: normal;
	/* font-size: 2rem; */
	/*background: #808080;*/
}



.main-title {
	background-image: url(wood.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 75%;
	
	padding: 10px;
	margin: 10px;
}

h1 {
	/*font-family: "Times New Roman", Times, serif;*/
	color: black;
	text-align: center;
}

body {
	background-image: url(sea.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
	background-size: cover;
}

/* Container for the marquee */
.marquee {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    width: 100%;
    background: skyblue;
    color: #fff;
    padding: 10px 0;
  }

  /* Inner content that scrolls */
  .marquee-content {
    display: inline-block;
    padding-left: 0%; /* Start off-screen */
    animation: marquee 15s linear infinite;
  }

  /* Duplicate content for seamless loop */
  .marquee-content span {
    display: inline-block;
    padding: 0 2rem;
  }

/* Animation keyframes */
  @keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  }



.container {
	height: 100%;
	display: grid;
	grid-template-columns: 1fr 4fr;
	/*grid-template-rows: repeat(2, 1fr);*/
}

.side-bar {
	background: url(wood3.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	
	padding: 10px;
	margin: 10px;
	
	grid-row-start: 1;
	grid-row-end:2;
}

.bubble-container{
	display:flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-around;
}

.bubble {
	background-image: url(bubble.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	
	flex-basis: 400px;
	flex-grow: 1;
    flex-shrink: 1;
	
	min-width: 300px;
	max-width: 500px;
	
	padding: 5%;
	margin: 10px;
}

.content {
	display: flex;
	justify-content: center;
	align-content: center;
	
	font-size: 85%;
	
	padding: 10%;
	margin: 10%;
	height: auto;
}