:root{
    --pink:#BCABAE;
    --black: #0F0F0F;
    --dark_gray: #2D2E2E;
    --light_gray: #716969;
    --white: #FBFBFB;

    --width: 700px;
}
body{
    background-color: var(--black);
    color: var(--white);
}
.container{
    position: relative;
}
/*.header{
    background-color: var(--white);
    width: 100%;
    height: 90px;
    position: fixed;
    top: 0;
    justify-content: center;
    align-items: center;
    display: flex;
    z-index: 1000;
}
.header_item{
    margin: 30px;
    color: black;
}*/
.profile{
    margin: 250px auto;
    width: var(--width);
    display: flex;
}
.profile > img:nth-child(1){
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-top: 30px;
    display: block;
    box-shadow: 0px 0px 20px #555;
    transition: all 0.5s ease-in-out;
}
.profile > img:nth-child(1):hover{
    box-shadow: 0px 0px 20px 5px rgb(100, 255, 0), 0px 0px 20px 10px rgb(0, 100, 255);
}
.profile > div{
    margin-left: 30px;
    display: block;
}
.profile h1{
    margin-bottom: 0px;
}
.profile p{
    margin: 0;
}
.profile div h1 + p{
    margin-top: 0px;
    margin-bottom: 20px;
    font-size: 20px;
}
.profile div img{
    position: relative;
    width: 25px;
    height: 25px;
    margin-top: 5px;
    top: 7px;
    margin-left: 10px;
    filter: brightness(50%);
    transition: filter 0.3s;
}
.profile div img:hover{
    filter: brightness(100%);
}
.resume{
    background-color: var(--black);
    color: white;
    border: solid 1px;
    padding: 6px;
    border-radius: 5px;
    cursor: pointer;
    filter: brightness(50%);
    transition: filter 0.3s;
}
.resume:hover{
    filter: brightness(100%);
}
.container h1{
    text-align: center;
}

.skills{
    margin: auto;
    width: var(--width);
    height: 50vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5px;
    padding: 10px;
}
.skills > div{
    text-align: center;
    border-radius: 10px;
    width: 200px;
    height: 150px;
    margin: 0px auto;
    transition: background-color 0.2s ease;
}
.skills > div:hover{
    background-color: #2D2E2E;
}
.skills img{
    position: relative;
    width: 50px;
    height: 50px;
    padding: 15px;
    display: inline;
}
.skills h1{
    margin-top: 0px;
}


.tabs{
    width: var(--width);
    margin: auto;
    margin-top: 100px;
}
.tabs section{
    display: flex;
    justify-content: space-between;
    background-color: #2D2E2E;
    border-radius: 10px;
    padding: 2px;
}
.tabs button{
    width: 50%;
    color: white;
    margin: 2px;
    padding: 5px;
    font-size: 20px;
    background-color: var(--dark_gray);
    border: none;
    border-radius: 10px;
    transition: all 0.2s ease;
}
.tabs > div{
    width: var(--width);
    margin: auto;
    margin-top: 30px;
    height: 100vh;
}
.tabs > div > div{
    width: var(--width);
    border-bottom: solid;
    margin-top: 20px;    
}
.tabs > div h2{
    margin: 0;
}
.tabs > div span{
    color: var(--light_gray);
}
section > button:hover{
    background-color: white;
    color: black;
}