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

body {
    background: #141414;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

main {
    padding: 8rem;
    max-width: 800px;
    width: 100%;
}

.logo {
    margin-bottom: 4rem;
}

.logo svg {
    width: 100%;
    height: auto;
    max-width: 150px;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.japanese {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.description {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    max-width: 600px;
    line-height: 1.6;
    font-weight: 300;
}

nav {
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

nav a:hover {
    opacity: 0.8;
} 