body, h1, h2, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Barlow Condensed', sans-serif;
    background-color: #000;
    color: #fff;
    background-image: url('lol.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden; 
}

.navbar {
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    width: 100%;
    z-index: 2;
}

.navbar img.rounded-image {
    width: 50px; 
    height: 50px;
    border-radius: 50%; 
    margin-right: 10px;
}

.navbar .name {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.navbar .nav-links {
    display: flex;
    align-items: center;
}

.navbar a {
    text-decoration: none;
    color: #00f; 
    margin: 0 15px; 
    font-weight: bold;
    transition: color 0.3s;
    white-space: nowrap; 
}

.navbar a:last-child {
    margin-right: 0; 
}

.navbar a:hover {
    color: #fff;
}

.content {
    padding: 160px 0 20px; 
    text-align: center;
}

.content img.rounded-image {
    width: 100px; 
    height: 100px;
    border-radius: 50%; 
    margin-bottom: 20px;
}

.content .name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.skills p {
    font-size: 18px;
    margin: 20px 0;
}

.skills ul {
    list-style-type: none;
    padding-left: 0;
}

.skills li {
    margin-bottom: 10px;
}

.contact {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 100px;
}

.contact a {
    text-decoration: none;
    color: #00f;
    font-weight: bold;
}

.contact a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .navbar .nav-links {
        display: none; 
    }

    .navbar .name {
        margin-right: auto; 
    }

    .navbar img.rounded-image {
        width: 40px; 
        height: 40px;
    }
    .content {
        padding: 80px 0 20px; 
    }

    .content img.rounded-image {
        width: 80px; 
        height: 80px;
    }
}
