* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    width: min(600px, calc(100% - 32px));
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 24px auto;
}

header h1 {
    margin-bottom: 10px;
    color: #333;
}

header p {
    color: #666;
    margin-bottom: 30px;
}

.links {
    margin-bottom: 40px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    margin: 10px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s;
}

.logo {
    width: 24px;
    height: 24px;
}

.linkedin {
    background-color: white;
    border: 2px solid #0077b5;
    color: #0077b5;
}

.linkedin:hover {
    background-color: #f0f8ff;
}

.github {
    background-color: white;
    border: 2px solid #333;
    color: #333;
}

.github:hover {
    background-color: #f9f9f9;
}

.projects {
    text-align: left;
}

.projects h2 {
    color: #333;
    border-bottom: 2px solid #f4f4f4;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.project {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.project h3 {
    margin-top: 0;
    color: #333;
}

.project p {
    color: #666;
}

.coming-soon {
    font-style: italic;
    color: #999;
    text-align: center;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    width: 100%;
    margin-top: auto;
    box-sizing: border-box;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 640px) {
    .container {
        width: calc(100% - 24px);
        padding: 24px 16px;
        margin: 12px auto;
        border-radius: 8px;
    }

    .links {
        margin-bottom: 24px;
    }

    .link-button {
        width: 100%;
        margin: 8px 0;
        padding: 12px 16px;
        font-size: 16px;
    }

    .logo {
        width: 20px;
        height: 20px;
    }
}