* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Noto Sans Mono', monospace;
font-size: 14.7px;
color: #fff;
}

.bg {
position: fixed;
inset: 0;
background-image: url('https://media.discordapp.net/attachments/1500660783183302708/1536822399943835668/image.png?ex=6a7e1e64&is=6a7ccce4&hm=1b9cec9b018ec7294cae4bbd5d65d2fca6dca48793346009e65efc0d6c349e64&animated=true');
background-size: cover;
background-position: center;
background-attachment: fixed;
z-index: -2;
}

.overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.45);
z-index: -1;
}

.nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 24px 48px;
}

.nav-name {
font-family: 'Fredoka', sans-serif;
font-size: 22px;
font-weight: 600;
}

.nav a {
color: #fff;
text-decoration: none;
margin-left: 28px;
font-size: 15px;
opacity: 0.85;
}

.nav a:hover {
opacity: 1;
}

main {
max-width: 900px;
margin: 0 auto;
padding: 0 24px;
}

.hero {
min-height: 70vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}

.hero h1 {
font-family: 'Fredoka', sans-serif;
font-size: 64px;
font-weight: 700;
}

.tagline {
margin-top: 12px;
font-size: 18px;
opacity: 0.85;
}

section {
padding: 80px 0;
}

section h2 {
font-family: 'Fredoka', sans-serif;
font-size: 34px;
margin-bottom: 32px;
text-align: center;
}

.about-content {
display: flex;
align-items: center;
gap: 40px;
background: rgba(0, 0, 0, 0.35);
padding: 32px;
border-radius: 16px;
}

.about-gif {
width: 220px;
height: 220px;
object-fit: cover;
border-radius: 12px;
flex-shrink: 0;
}

.about-content p {
font-size: 17px;
line-height: 1.6;
}

.hobby-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
}

.hobby-card {
background: rgba(0, 0, 0, 0.35);
padding: 28px;
border-radius: 16px;
text-align: center;
}

.hobby-card h3 {
font-family: 'Fredoka', sans-serif;
font-size: 22px;
margin-bottom: 10px;
}

.contact {
text-align: center;
}

footer {
text-align: center;
padding: 32px 0;
font-size: 13px;
opacity: 0.7;
}

@media (max-width: 700px) {
.nav {
padding: 16px 20px;
flex-direction: column;
gap: 12px;
text-align: center;
}
.nav a {
margin: 0 10px;
}
.hero {
padding: 0 20px;
min-height: 60vh;
}
.hero h1 {
font-size: 34px;
}
.tagline {
font-size: 15px;
}
section {
padding: 50px 20px;
}
section h2 {
font-size: 26px;
}
.about-content {
flex-direction: column;
padding: 20px;
gap: 20px;
}
.about-gif {
width: 100%;
max-width: 260px;
height: auto;
}
.hobby-grid {
grid-template-columns: 1fr;
}
.bg {
background-attachment: scroll;
}
}
