    * {
      box-sizing: border-box;
    }

    body {
      font-family: 'Courier New', Courier, monospace;
      margin: 0;
      background: linear-gradient(to bottom, #f2e1c1, #ae4a4a);
    }

    header {
      background-color: #bc8168;
      padding: 10px;
      margin: 0;
    }

    .menu {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 90%;
      margin: auto;
    }

    .logo {
      width: 10%;
    }

    .logo img {
      width: 100%;
    }

    .menu-item {
      width: 20%;
      background-color: rgb(255, 198, 154);
      color: black;
      padding-top: 5px;
      padding-bottom: 5px;
      text-align: center;
      border-radius: 34px;
    }

    .menu-item:hover {
      background-color: #ff9d64;
      box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    }

    .menu-item a {
      text-decoration: none;
      color: black;
    }

    .menu-item:hover a {
      color: white;
    }

    .current {
      background-color: #ae4a4a;
      color: white;
      width: 20%;
      padding-top: 5px;
      padding-bottom: 5px;
      text-align: center;
      border-radius: 34px;
    }

    #sub-menu {
      width: 100%;
      display: none;
      position: absolute;
      top: 29px;
    }

    .sub-menu-item {
      border-bottom: solid white 1px;
      border-radius: 30px;
      width: 100%;
      background-color: #a54848;
      padding: 5px;
      text-align: center;
      color: white;

    }

    #projects {
      position: relative;
    }

    #projects:hover {
      color: white;
    }

    #projects:hover #sub-menu {
      display: block;
    }

    .about-me {
      background-color: #f2e1c1;
      padding: 50px;
      display: flex;
      justify-content: space-around;
    }

    .profile-image {
      width: 20%;
      margin-left: 15%;
    }

    .profile-image img {
      width: 100%;
      border-radius: 50%;
      box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    }

    .intro {
      width: 50%;
    }

    .intro h1 {
      font-size: 40px;
      color: #ae4a4a;
    }

    .intro p {
      font-size: 18px;
    }

    .skills {
      padding: 40px;
      background-color: #bc8168;
    }

    .skills h2 {
      font-size: 40px;
      color: #333;
      text-align: center;
      margin-bottom: 10px;
    }

    .skills ul {
      list-style: none;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }

    .skills ul li {
      background-color: #ae4a4a;
      color: white;
      padding: 10px;
      margin: 10px;
      border-radius: 25px;
      font-weight: bold;
    }

    .fun-fact {
      padding: 40px;
      background-color: #f2e1c1;
      text-align: center;
    }

    .fun-fact h2 {
      font-size: 40px;
      color: #ae4a4a;
      margin-bottom: 15px;
    }

    .fun-fact p {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .fun-fact a {
      color: #ae4a4a;
      text-decoration: none;
    }

    .fun-fact a:hover {
      text-decoration: underline;
    }

    footer {
      background-color: #bc8168;
      text-align: center;
      padding: 15px;
      color: rgb(68, 44, 44);
      width: 100%;
      margin: 0;
    }

    /*for large screens*/
    @media only screen and (min-width: 1280px) {
      .menu {
        flex-direction: row;
        gap: 20px;
      }

      .profile-image {
        width: 20%;
      }

      .intro {
        margin-top: 30px;
      }
    }

    /*for desktops*/
    @media only screen and (max-width: 1280px) and (min-width: 769px) {

      .menu {
        flex-wrap: wrap;
        justify-content: center;
      }

      .profile-image {
        margin-top: 70px;
      }
    }

    /*for tablets*/
    @media only screen and (max-width: 768px) and (min-width: 481px) {

      .menu {
        flex-direction: column;
        align-items: center;
      }

      .menu-item,
      .current {
        width: 80%;
        margin-bottom: 10px;
      }

      .about-me {
        flex-wrap: wrap;
        gap: 20px;
      }

      .profile-image {
        width: 50%;
        margin: auto;
      }

      .intro {
        width: 80%;
        margin: auto;
      }
    }

    /*for mobile phones*/
    @media only screen and (max-width: 480px) {
      .about-me {
        flex-wrap: wrap;
        gap: 20px;
      }

      .menu {
        flex-direction: column;
        background-color: #bc8168;
        width: 100%;
      }

      .menu-item,
      .current {
        width: 100%;
        margin-bottom: 10px;
      }

      #sub-menu {
        top: 25px;
      }

      .logo img {
        width: 70px;
      }

      .menu-item,
      .current {
        width: 100%;
        font-size: 14px;
        margin-bottom: 5px;
      }

      .profile-image {
        width: 50%;
        margin: auto;
      }

      .intro {
        width: 80%;
        margin: auto;
      }

      footer {
        font-size: 12px;
        text-align: center;
        padding: 20px;
      }
    }