body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
}

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

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
}

.header .name a {
    font-size: 28px;
    font-weight: bold;
    color: #cccccc; 
    text-decoration: none; 
}

.header .name a:hover {
    color: #ffffff; 
    border-bottom: 2px solid #ffffff;
    transition: border-bottom-color 0.3s;
}
.navbar a {
    color: #cccccc;
    text-decoration: none;
    margin-left: 20px;
    font-size: 18px;
    font-weight: bold;
}

.navbar a:hover {
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
    transition: border-bottom-color 0.3s;
}

.main {
    text-align: left;
}

.introduction h1 {
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
}

.introduction p {
    font-size: 20px;
    line-height: 1.6;
    color: #cccccc;
    text-align: justify;
}

.connect p {
    margin-top: 100px;
    font-size: 20px;
    color: #cccccc;
}

.connect a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

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

.footer {
    margin-top: 50px;
    text-align: center;
    color: #bbbbbb;
}

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

.footer .links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer .links img {
    width: 24px; 
    height: 24px; 
}

@media (max-width: 700px) {
    .container {
        padding: 20px;
    }

    .header {
        margin-bottom: 50px;
        flex-direction: column;
        align-items: flex-start;
    }

    .header .name {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .header .name a {
        font-size: 24px;
        align-items: center;
    }

    .navbar {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        width: 100%;
        margin-left: 10px;
    }

    .navbar a {
        margin-left: 0;
        margin-right: 10px;
    }

    .introduction h1 {
        font-size: 28px;
    }

    .introduction p {
        font-size: 18px;
    }

    .connect p {
        font-size: 18px;
    }

    .footer .links {
        flex-direction: row;
        gap: 10px;
    }
}