
      .jersey-25-regular {
  font-family: "Jersey 25", serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-mono-<uniquifier> {
  font-family: "Roboto Mono", serif;
  font-weight: 400;
  font-style: normal;
}

.cooltext {
        font-family: "Roboto Mono", serif;
      margin: 0;
      font-size: 80px;
    }
.bigtext {
        font-family: "Roboto Mono", serif;
      margin: 0;
      font-size: 80px;
    }
.subbigtext {
       font-family: "Roboto Mono", serif;
      margin: 0;
      font-size: 50px
    }
.learnmoretext {
    text-decoration: none;
    color: #1d538c;
        font-family: "Roboto Mono", serif;
      margin: 0;
      font-size: 30px;
      transition: transform 0.3s, box-shadow 0.3s;
    }
.learnmoretext:hover {
        text-decoration: none;
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.learnmorea {
text-decoration: none;
    color: #1d538c;
}




    body {
        font-family: "Roboto Mono", serif;
      margin: 0;
      padding: 0;
      background-color: #f5f5f5;
      color: #333;
      line-height: 1.6;
    }

    header {
        font-family: "Roboto Mono", serif;
        font-size:120px;
      background-color: #2c3e50;
      color: #ecf0f1;
      text-align: center;
      padding: 40px 20px;
    }

    header h1 {
      margin: 0;
      font-size: 80px;
    }
    header h2 {
        font-family: "Roboto Mono", serif;
      margin: 0;
      font-size: 80px;
    }

    header p {
      margin: 10px 0 0;
      font-size: 18px;
    }

    main {
      max-width: 1100px;
      margin: 20px auto;
      padding: 20px;
    }

    section {
      margin-bottom: 40px;
    }

    #about {
      text-align: center;
    }

    #about img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      margin-bottom: 20px;
    }

    #projects {
      text-align: center;
    }

    .project-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .project {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      width: 300px;
      text-align: left;
    }
      .project {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 300px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.project:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}


    .project img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .project h3 {
      margin: 15px;
      font-size: 20px;
      color: #2c3e50;
    }

    .project p {
      margin: 0 15px 15px;
      font-size: 14px;
      color: #555;
    }
      

    footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      text-align: center;
      padding: 10px;
      font-size: 14px;
    }

    @media (max-width: 600px) {
      header h1 {
        font-size: 28px;
      }

      header p {
        font-size: 16px;
      }
    }
              a {
            text-decoration: none;
        }
