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

img {
    max-width:100%
}

body {
    overflow-x:hidden;

    margin:0;
    padding:0;

}

p {
    text-align: center;
    margin-top: 30px;
    color:rgba(235, 205, 114, 0.576)
    
}
section{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: aliceblue;
    background-image: url(assets/ocean3.jpg);
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    opacity:0.75;
    z-index:-1;

}

.navbar {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:50px;
    padding: 10px;
    background-color: aliceblue;
    padding: 1rem 2rem;
    z-index: 999;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  align-items:center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.navbar a {
    font-weight: bold;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color:rgba(36, 37, 37, 0.824);
    text-decoration: none;
    font-size: 20px;
}

.navbar a:hover {
  text-decoration: underline;
}

main {
  padding-top: 80px;
}




/*
.icon1-box {
    background-image:url(scallop_icon.png);
    width:400px;
    height:400px;
    background-size:cover;
    background-position: center;
    background-color:blanchedalmond;
}

.icon2-box {
    background-image:url(mussel_icon.png);
    width:400px;
    height:400px;
    background-size:cover;
    background-position: center;
    background-color:blanchedalmond;
}




.icon3-box {
    background-image:url(anenome_icon.png);
    width:400px;
    height:400px;
    background-size:cover;
    background-position: center;
    background-color:blanchedalmond;
}

.icon4-box {
    background-image:url(snail_icon.png);
    width:400px;
    height:400px;
    background-size:cover;
    background-position: center;
    background-color:blanchedalmond;
}
   
*/

 .center-container {
    z-index: 1001;
    border-radius: 50%;
    display:flex;
    padding:200px;
    margin:0;
    flex-direction:column;
    justify-content:center;
    flex-wrap:wrap;
    align-content:center;
  
    position:fixed;
    top:50%;
    left:50%;
    height:75vh;

    transform: translate(-50%,-50%);
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);

    text-align: center;
    font-size: 100px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color:rgb(36, 37, 37);
    font-style: oblique;


}

h2{
    font-weight: normal;
    min-width:500px;
}

h3{
    font-weight: 100;
    line-height:1.5;
    min-width:500px;
}
.footnotes-container {
    display: flex;
    flex-direction:column;
    position:relative;
    justify-content: flex-end;;
    
    bottom:0;
    left:0;
    margin-top: 300px;
    width:100%;
    height:200%;
    gap:2rem;
    
    align-items: right;
    padding-top:300px;
    padding-left:400px;
    padding-right:400px;
    padding-bottom:800px;
    
    font-size:15px;
     font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background: linear-gradient(to bottom, white,rgb(136, 119, 110), rgb(31, 61, 76), rgb(17, 45, 43));
    z-index:10;
    color:rgba(240, 248, 255, 0.805);

    

}

.container {
    font-size: 250px;
    text-align:center;
    margin-top: 43vh;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.special-text span {
    display:inline-block;
    font-size:200px;
    color:aliceblue;
    animation: ART 2s ease-in-out infinite;
    z-index:-3;

}
    
.special-text span:nth-child(1) {
    animation-delay: 0s;
}

.special-text span:nth-child(2) {
    animation-delay: 0.2s;
}

.special-text span:nth-child(3) {
    animation-delay: 0.4;
}

@keyframes ART {
    0%, 100% {
        transform:translateY(0);
    }
    50% {
        transform:translateY(-20px);
    }
}


section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 170px;
    background: white;

}

section .wave 
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height:100px;
    background: url(assets/wave.png);
    background-size: 1000px 100px;


}

section .wave.wave1 
{
    animation: animate 5s linear infinite;
    z-index:1000;
    opacity: 1;
    animation-delay: 0s;
    bottom: 170px;

}
@keyframes animate
{
    0%
    {
        background-position-x: 0;
    }
    100%
    {
        background-position-x:1000px;
    }
}

section .wave.wave2
{
    animation: animate2 7s linear infinite;
    z-index:999;
    opacity: 0.5;
    animation-delay: -5s;
    bottom: 155px;

}
@keyframes animate2
{
    0%
    {
        background-position-x: 0;
    }
    100%
    {
        background-position-x:1000px;
    }
}

section .wave.wave3
{
    animation: animate3 8s linear infinite;
    z-index:998;
    opacity: 0.2;
    animation-delay: -2s;
    bottom: 160px;

}
@keyframes animate3
{
    0%
    {
        background-position-x: 0;
    }
    100%
    {
        background-position-x:1000px;
    }
}

section .wave.wave4
{
    animation: animate4 4s linear infinite;
    z-index:997;
    opacity: 0.7;
    animation-delay: -5s;
    bottom: 165px;

}
@keyframes animate4
{
    0%
    {
        background-position-x: 0;
    }
    100%
    {
        background-position-x:1000px;
    }
}

