* {
    box-sizing: border-box;
    margin: 0;
}


.seagullImage {
    background-image: url("https://raw.githubusercontent.com/angles-d/HackGT8/main/chipseagull.jpg");
    min-height: 1000px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
    background-attachment: fixed;
}

.mainText {
    font-family: Adamina;
    position: absolute;
	top: 45%;
	left: 40%;
	font-size: 30px;
	transform: translate(-80%, -50%);
	color: white;
    width: 30%;
}

.logo{
    padding:30px
}

.mainH1 {
    text-shadow: 2px 2px 10px #726496;
    font-size: 100px;
    padding-bottom: 30px;
    color: #87CEEB;
}

.turtleImage {
    background-image: url("https://raw.githubusercontent.com/angles-d/HackGT8/main/turtleplastic.jpg");
    min-height: 1400px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
    background-attachment: fixed;
}

.problemText {
    font-family: Adamina;
    position: absolute;
	top: 40%;
	left: 50%;
	font-size: 30px;
	transform: translate(-50%, -50%);
	color: white;
}

.problemH1 {
    text-shadow: 2px 2px 10px #726496;
    font-size: 50px;
    padding-bottom: 30px;
    text-align: center;
}

.problemPara {
    background-color: rgba(3,92,150,.8);
    padding: 40px;
}

.howPara {
    background-color: rgba(3,92,150,.8);
    padding: 40px;
    margin-top: 40px;
}
.howPara2{
    background-color: rgba(3,92,150,.8);
   text-align: center;
    padding: 40px;
    margin-top: 40px;
}

.solutionImage {
    background-image: url("https://raw.githubusercontent.com/angles-d/HackGT8/main/happyrecycle.jpg");
    min-height: 800px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.solutionText {
    padding-top: 150px;
    font-family: Adamina;
    position: absolute;
    top: 40%;
    left: 50%;
    font-size: 30px;
    transform: translate(-50%, -50%);
    color: white;
} 

.solutionH1 {
    text-shadow: 2px 2px 10px #726496;
    font-size: 50px;
    padding-bottom: 30px;
    text-align: center;
}

.solutionPara {
    background-color:rgba(0,0,80,.8);
    padding: 30px;
}

li:not(:last-child){
    margin-bottom: 20px;
}

.mapDiv {
    /*background-color: rgb(3,92,150);*/
    color: rgb(230,230,230);
    background-image: url("https://raw.githubusercontent.com/angles-d/HackGT8/main/bottles1.png");
    min-height: 850px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
    background-attachment: fixed;
    backdrop-filter: blur(10px);
   
}
#mapBox {
    display: flex;    
    width:90%;
    height:850px;
}
#mapBox div{
    flex-basis: 100%;
}


.mapH1 {
    text-shadow: 3px 3px 20px #221e2c;
    font-size: 40px;
    padding-left:3%;
    padding-right:3%;
    padding-top: 15%;
    padding-bottom: 10%;
    min-height: 850px;
    margin: auto;
    text-align: left;
    background-color:rgba(0, 0, 0, 0.4);
   
    /* background-color: rgba(2, 76, 126, 0.8); */
}
.info{
    font-size: 30px;
    text-shadow: 3px 3px 20px #221e2c;
    font-family: Adamina;
    padding-top: 12%;
    max-width: 300px;
    text-align: center;
}

.info p{
    padding-bottom: 20px;
}

.map {
    /* overscroll-behavior: contain; */
    text-align: center;
    margin: auto;
    min-width:1010px;
    min-height:100%;
    overflow-y: auto;
    /* padding-top: 6%; */

    background-color:rgba(0, 128, 167, 0.4);
   
}



nav {
    position: absolute;
    display: flex;
    margin: auto;
    align-items: center;
    top: 2%;
    left: 2%;
    width: 50em;
}

nav a {
    color: #f6f4e6;
    /*text-align: center;*/
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    width: 15%;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

nav a:hover {
    color: #87CEEB;
}

nav .dot {
    width: 6px;
    height: 6px;
    background: #87CEEB;
    border-radius: 50%;
    opacity: 0;
    -webkit-transform: translate(-500px, 15px);
    transform: translate(-310px, 15px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
  
nav a:nth-child(2):hover ~ .dot {
    -webkit-transform: translate(-270px, 15px);
    transform: translate(-450px, 15px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

nav a:nth-child(3):hover ~ .dot {
    -webkit-transform: translate(-205px, 15px);
    transform: translate(-335px, 15px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
    }

nav a:nth-child(4):hover ~ .dot {
    -webkit-transform: translate(-130px, 15px);
    transform: translate(-220px, 15px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

nav a:nth-child(5):hover ~ .dot {
    -webkit-transform: translate(-20px, 15px);
    transform: translate(-70px, 15px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}
  

nav h2 {
    font-family: Abhaya Libre;
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    color: #FFFFFF;
    /* color:#00b7ff; */
    margin-right: 50px;
}

