*{
    margin: 0;
    padding: 0;
    font-family: "poppins", "sans-serif";
    box-sizing: border-box;
    /* border: 2px solid red; */
}
body{
    background-color: #83a6f7;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.foreground{
    margin-left: 3%;
    margin-right: 3%;
    margin-bottom: 3%;
}
body .foreground .header{
    
    margin-top: 7%;
    width: 100%;
    display: inline-flex;
    justify-content: space-around;
}
.main{
    box-shadow: 15px 10px 8px #6e6b6b;
    border-radius: 22px;
    box-sizing: border-box;
    background: #2d313a;
    min-height: 100vh;
    width: 100%;
    color: #fff;
    position: relative;
    margin-top: 3%;
    padding: 3%;
}

.navigation{
    width: 100%;
    height: 10vh;
    position: fixed;
    z-index: 1;
    /* background-position: fixed; */
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(94, 103, 121, 80%);
    
}
.navigation ul{
    list-style-type: none;
    text-align: center;
    position: fixed;
    overflow: auto;
}
.navigation ul a{
    color: #fff;
    text-decoration: none;
    top: 50%;
}
.skills img{
    float: left;
    width:  15vh;
    height: 15vh;
    object-fit: cover;
    margin-top: 3%;
}
.skills{
    float: left;
    width: 50%;
    padding: 5px
}