* {
     margin: 0;
      padding: 0;
       box-sizing:
        border-box;
     }

     body {
		background-color: #345;
		color: #EEE;
		font-family: "Special Gothic Expanded One";
		background-image: url(../images/fishing.jpg);
		background-size: cover;
        background-position: center;
        line-height: 2;       
        padding: 20px;
		}

    p {
        width: 60%;
        padding-left: 20px;
    }

	#container {
		border: 8px solid #FFCC00;
		min-height: 96vh;
		background-color: rgba(0,0,0,.6);
        border-radius: 20px;
        padding: 20px;
		}

	header {
        padding: 40px 20px;
        margin-bottom: 20px;
        text-align: center;
		min-height: 300px;
		}


    h1 {
        color: #FFDE59;
        font-size: 4rem;
        margin: 20px auto;
        margin-top: 20px;
        margin-bottom: 20px;
        max-width: 600px;
        text-align: center;
        font-family: "Special Gothic Expanded One", sans-serif;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
        border: 3px solid #FFCC00;
        border-width: 2px;
        padding: 20px;
        border-radius: 15px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(0,0,0,0.3));
        box-shadow: 0 0 20px rgba(0,0,0,0.5);
        transition: transform 0.3s;
        }

    h1:hover {
         transform: scale(1.03);
        }
      

	h2 {
        font-size: 2rem;
		color: #FFFACD;
        margin-top: 30px;
        font-family: "Special Gothic Expanded One";
        padding-left: 20px;
	}




	a {
		color: #90EE90;
        text-decoration: none;       
	}

nav {
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;    
}

nav a {
    padding: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    transition: all 0.3 ease;
}

nav a:hover {
    background-color: #ffcc00;
    color: #222;
    transition: 0.2ms;
}

footer {
    color: greenyellow;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
    font-family: "Special Gothic Expanded One";
}


.fish-pictures {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  margin-top: 20px;
}

.fish-pictures img {
    max-width: 100%;
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0,0,0,0.5);
    aspect-ratio: 1;

}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  nav {
    flex-direction: column;
    gap: 1rem;
  }

  p {
    width: 100%;
  }

  .fish-pictures {
    flex-direction: column;
    align-items: center;
  }

  .fish-pictures img {
    width: 90%;
  }
}