
*{
    box-sizing:border-box;
}

img {
    max-width:100%
}

body {
    margin:0;
    padding:0;
}

h3{
    font-weight:normal;
}

a {
    color:inherit;
    text-decoration: none;
    font-size:15px;
}

.navbar a.active {
    text-decoration: underline;
  pointer-events: none; /* disables clicking */
  cursor: default;
}
.navbar {
    position: fixed;
    top:0;
    right:0;
    width:50%;
    height:50px;
    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;
}

.homepage-container {
  position: fixed;      
  bottom: 0;           
  left: 50%;
  margin-top: 50px;;  
  padding-top:20px;
  padding-bottom:20px;         
  transform: translateX(-50%); 
    width:100vw;
height:80px;
    z-index:-1;

  
  display: flex;
  justify-content: center; 
  align-items: center;  
  
  font-size: 20px;
  font-weight:bold;
  font-family: ambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  color:rgb(37, 35, 47);

  
  

  background-image:url(ocean3.jpg);
  opacity:0.65;
  background-size:100%;
  background-position: bottom;
  background-repeat: no-repeat;
  

}

.homepage-container a {
    text-decoration:none;
    color:inherit;
    transition: color 0.3s ease;
}


.homepage-container a:hover {
    color: orangered;
}


.heading-container {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    position: absolute;
    top: 100px;
    left: 100px;   /* adjust this to push closer/farther from the edge */
    width: 600px;
    text-align: left;
}

.container {
  position: fixed;
  top: 200px;        /* distance from the top of the screen */
  left: 100px;      /* fixed distance from the left */
  width: 600px;     /* fixed width */
  font-size: 18px;
  line-height: 1.6;
  padding: 1.5rem;
  z-index: 10;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.icon-container {
    position: fixed; /* change absolute to fixed */
  
    display: flex;
    flex-direction: column;


    background-image: url(snail_icon.png);
    width: 250px;
    height: 250px;

    background-size: 100%;
    background-position: -60px -120px;
    background-repeat: no-repeat;

}


.img-fixed {
    position: fixed;
    top: 20;
    right: 0;

    width:800px;
    height: 800px;
    object-fit: cover;
    padding-bottom: 100px;

    z-index: -1;
}

