body {
    overflow-y: visible;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: linear-gradient(115deg, rgb(139, 78, 49), rgb(75, 174, 85));
}

#body__profile_photo {
    width: 300px;
    margin: 40px 0;
    background: none;
    background-color: rgb(157, 157, 157);
    padding: 10px;
    border-radius: 150px;
}
.body__profile_photo_img {
    background: none;
}
h1 {
    color: white;
    font-size: 60px;
    margin: 0 0 20px 0;
    padding: 0 10px;
    background-color: rgb(0, 191, 255);
    border-radius: 20px;
}


#skills {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
}
.skill_type {
    margin: 0 0 20px 0;
}
.skills_title_container {
    display: flex;
    justify-content: center;
    width: 100%;
}
.skills_title {
    margin: 20px 0;
    padding: 5px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgb(65, 198, 255);
    width: fit-content;
    color: white;
    cursor: pointer;
    border-radius: 20px;
}
.skills_title_text,
.skills_title_arrow {
    background: none;
    font-size: 28px;
}
.skills_title_arrow {
    height: 40px;
    width: 60px;
    margin: 0 0 0 14px;
    background-color: rgb(0, 187, 255);
    border-radius: 5px;
    filter: brightness(0.95);
}

.space {
    height: 30px;
}