* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    min-height: 100vh;
    height: 100%;
    background-image: url('../images/skills-bg.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
nav {
    width: 100%;
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    flex-wrap: wrap;
}
.logo {
    flex-basis: 20%;
    margin-bottom: 20px;
    
}
img {
    width: 100%;
    margin-top: -50px;
    max-width: 172px;
}
nav ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 1em;
}
.nav-item {
    text-decoration: none;
    padding: 0.75em 1em;
    color: rgb(3, 4, 3);
    font-size: 1em;
}
.skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 120px auto;
    padding: 20px;
    background-color: #95cb4988;
    border: 1px solid #09b1b1;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.lang,.frame,.misc {
    flex: 1;
    margin: 20px;
    padding: 20px;
    background-color: #6cc2a79a;
    border: 4px solid #cfff60;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out; 
}

.lang:hover {
    background-color: #ffe6e6; 
    border-color: #ffa07a;
    box-shadow: 0 0 10px rgba(207, 90, 44, 0.254);
}

.frame:hover {
    background-color: #b0a5ec; 
    border-color: #5bbadf;
    box-shadow: 0 0 10px rgba(120, 204, 238, 0.5);
}

.misc:hover {
    background-color: #c6f7d0; 
    border-color: #34c759;
    box-shadow: 0 0 10px rgba(52, 199, 89, 0.5);
}

.lang h1,.frame h1,.misc h1 {
    margin-top: 0;
}

ul {
    list-style:disc;
    padding: 0;
    margin: 0;
}

ul li {
    margin-bottom: 10px;
}

ul li:last-child {
    margin-bottom: 0;
}