 body {
      margin: 0;
      padding: 0;
      background-color: #fdf6e3;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      flex-direction: column;
      text-align: center;
      padding: 1em;
    }

    nav {
      position: absolute;
      top: 20px;
      width: 100%;
      text-align: center;
    }
#active{
 color: #000;
 font-weight: bolder;
}
#active:hover{
 text-decoration: none;
}
    nav a {
      margin: 0 1em;
      text-decoration: none;
      color: #0066cc;
      font-weight: 600;
      font-size: 1rem;
    }

    nav a:hover {
      text-decoration: underline;
    }

    img {
      max-width: 100%;
      width: 200px;
      height: auto;
      margin-bottom: 1.5em;
    }

    h1 {
      font-size: 2.5rem;
      margin: 0;
    }

    p {
      font-size: 1.2rem;
      margin-top: 0.8em;
      color: #555;
      max-width: 500px;
    }
main{
 position: absolute;
 top: 50px;
margin: 10px;
 text-align: left;
}
h1{
 text-align: center;
}
    @media (max-width: 600px) {
      h1 {
        font-size: 2rem;
      }

      p {
        font-size: 1rem;
      }

      img {
        width: 150px;
        margin-bottom: 1em;
      }

      nav a {
        display: inline-block;
        margin: 0 0.5em;
        font-size: 0.9rem;
      }
    }
