* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

header {
    background: #000000;
    color: rgb(254, 254, 254);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

header {
    background: #000;
    height: 60px;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #ccc;
    text-decoration: none;
    padding: 8px 12px;
    transition: 0.3s;
}

nav ul li a:hover {
    background: #444;
    color: white;
    border-radius: 4px;
}

main {
    padding: 60px 20px;
    background: #f5f5f5;
}



.content {
    display: flex;
    align-items: center;
    gap: 60px;

    max-width: 1000px;   
    margin: 0 auto;   
}


.text h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.text p {
    margin-bottom: 10px;
    color: #555;
}

.skills {
    font-weight: bold;
    color: black;
}
