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

body {
    font-family: Helvetica, Arial, sans-serif;
    background: white;
    color: black;
    line-height: 1.6;
    cursor: default;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.back-link {
    display: inline-block;
    color: black;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 40px;
    cursor: pointer;
}

.back-link:hover {
    text-decoration: underline;
}

.content {
    text-align: center;
}

h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.description {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: left;
}

.credit {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: left;
}

.credit a {
    color: #0066cc;
    text-decoration: none;
    cursor: pointer;
}

.credit a:hover {
    text-decoration: underline;
}

.about-image {
    max-width: 60%;
    height: auto;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    .description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }
    
    .description {
        font-size: 14px;
    }
} 