html {
  box-sizing: border-box;
  overflow-x: hidden;
}

body,
html {
  margin: 0;
  padding: 0;
}

* {
  -webkit-tap-highlight-color: transparent;
}

*,
::after,
::before {
  box-sizing: inherit;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

@font-face {
    font-family: 'Graphik LC Web';
    font-display: swap;
    src: url('template/fonts/graphiklcweb_medium.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Medium.otf');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Futura New Light';
    src: url('fonts/FuturaNewLight.otf');
    font-weight: 900;
    font-style: normal;
}

body {
    background-color: #ffe457;
    color: black;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    min-width: 340px;
    margin: 8px;
}

a {
    text-decoration: none;
    color: black;
    font-size: clamp(18px, 5vw, 40px);
    transition: all 0.3s ease;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    width: 100%;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    margin-top: clamp(30px, 7vw, 70px);
    padding-bottom: clamp(20px, 4vw, 32px);
    border-bottom: 2px solid black;
}

.container h1 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 300;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.container h1 a {
    color: black;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    padding: 6px 14px;
    border: 2px solid black;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.container h1 a:hover {
    background-color: black;
    color: #ffe457;
}

.container h1 a:hover svg {
    color: #ffe457;
}

.container h1 a svg {
    width: 26px;
    height: 19px;
    color: black;
    transition: color 0.3s ease;
}

.links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.project-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 2px solid black;
    border-radius: 16px;
    overflow: hidden;
    font-size: clamp(16px, 2.4vw, 20px);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 6px 6px 0 black;
}

.project-card-image {
    overflow: hidden;
}

.project-card-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.05);
}

.project-card-title {
    padding: 12px 16px;
    background-color: #ffe457;
}

img {
    max-width: 100%;
    height: auto;
    display: block; 
}

.middle-content {
    margin-top: clamp(20px, 6vw, 40px);
    width: 100%;
}

.my-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.my-info .my-info-avatar {
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
}

.my-info img {
    width: clamp(44px, 6vw, 64px);
    height: auto;
    pointer-events: auto;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.my-info:hover img {
    transform: scale(1.08);
}

.my-info-desc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: clamp(0px, 0.5vw, 5px);
}

.my-name {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;

    background: linear-gradient(90deg, #151c28 0%, #1f2a40 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.my-role {
    font-size: clamp(12px, 2vw, 16px);
    font-weight: 600;

    background: linear-gradient(90deg, #151c28 0%, #22345a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (max-width: 715px) {
    .links {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .links {
        grid-template-columns: 1fr 1fr;
    }
}



