body {
    position: relative;
    margin: 0 0 50vh 0;
    padding: 0;

}

.background-div{
    background-image: url("pexels-felix-mittermeier-956999.jpg");
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.header-div {
display: flex;
height: 30vh;
width: 100vw;
background-color: #3a3939c4;
margin: 10vh 0 0 0;
align-items: center;
justify-content: left;
box-shadow: inset 0 -3px 6px rgba(0, 0, 0, 0.3);
gap: 20px;

}
.image-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px 10px 20px;
    
    border-right: 2px solid rgb(37, 37, 37);
    
}
.profile-image {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    object-fit: cover;
}

.skills-section {
    display:flex;
    justify-content: space-between;
    gap: 50px;
    margin-top: 10px;
    padding: 10px;
    border-top: 2px solid rgb(37, 37, 37);
    width: 100%;
}   

.skills-section p{
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
    }
.skills-section ul {
    list-style-type:square;    
    padding-left: 20px;
}


a {
    color: #95fd78;
    text-decoration: none;
}a:hover {
    text-decoration: underline;
}
.languages li::marker{
    color: #95fd78;
}
.webdev li::marker{
    color: #4de7d0;
}
.robotics li::marker{
    color: #f9d664;
}
.others li::marker{
    color: #91dafc;
}


.button-div {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}
.button-div button {
    padding: 10px 20px;
    font-size: 1rem;
    border: 2px solid white;
    border-radius: 5px;
    background-color: #3a3939c4;
    color: white;
    cursor: pointer;
    transition: 1s;
}
.button-div button:hover {
    background-color: #95fd78;
    color: black;
    border-color: black;
}

